Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c39079 typedef struct unixShmNode unixShmNode; /* Shared memory instance */ typedef
43178 struct unixShmNode { struct
43179 unixInodeInfo *pInode; /* unixInodeInfo that owns this SHM node */
43180 sqlite3_mutex *pShmMutex; /* Mutex to access this object */
43181 char *zFilename; /* Name of the mmapped file */
43182 int hShm; /* Open file descriptor */
43183 int szRegion; /* Size of shared-memory regions */
43184 u16 nRegion; /* Size of array apRegion */
43185 u8 isReadonly; /* True if read-only */
43186 u8 isUnlocked; /* True if no DMS lock held */
[all …]