Searched defs:unixShmNode (Results 1 – 1 of 1) sorted by relevance
182 typedef struct unixShmNode unixShmNode; /* Shared memory instance */ typedef3566 struct unixShmNode { struct3567 unixInodeInfo *pInode; /* unixInodeInfo that owns this SHM node */3568 sqlite3_mutex *mutex; /* Mutex to access this object */3569 char *zFilename; /* Name of the mmapped file */3570 int h; /* Open file descriptor */3571 int szRegion; /* Size of shared-memory regions */3572 int nRegion; /* Size of array apRegion */3573 char **apRegion; /* Array of mapped shared-memory regions */3597 unixShmNode *pShmNode; /* The underlying unixShmNode object */ argument