Home
last modified time | relevance | path

Searched defs:unixShmNode (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/src/
H A Dos_unix.c198 typedef struct unixShmNode unixShmNode; /* Shared memory instance */ typedef
4279 struct unixShmNode { struct
4280 unixInodeInfo *pInode; /* unixInodeInfo that owns this SHM node */
4281 sqlite3_mutex *pShmMutex; /* Mutex to access this object */
4282 char *zFilename; /* Name of the mmapped file */
4283 int hShm; /* Open file descriptor */
4284 int szRegion; /* Size of shared-memory regions */
4285 u16 nRegion; /* Size of array apRegion */
4286 u8 isReadonly; /* True if read-only */
4287 u8 isUnlocked; /* True if no DMS lock held */
[all …]