mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Experimental change to the xShmXXX parts of the VFS interface.
FossilOrigin-Name: ca68472db01c14a899892007d1cbaff5e86ae193
This commit is contained in:
9
src/os.c
9
src/os.c
@@ -119,6 +119,15 @@ void sqlite3OsShmBarrier(sqlite3_file *id){
|
||||
int sqlite3OsShmClose(sqlite3_file *id, int deleteFlag){
|
||||
return id->pMethods->xShmClose(id, deleteFlag);
|
||||
}
|
||||
int sqlite3OsShmPage(
|
||||
sqlite3_file *id,
|
||||
int iPage,
|
||||
int pgsz,
|
||||
int isWrite,
|
||||
void volatile **pp
|
||||
){
|
||||
return id->pMethods->xShmPage(id, iPage, pgsz, isWrite, pp);
|
||||
}
|
||||
|
||||
/*
|
||||
** The next group of routines are convenience wrappers around the
|
||||
|
Reference in New Issue
Block a user