os/persistentdata/persistentstorage/sql/SQLite/os_os2.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/sql/SQLite/os_os2.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,73 @@
     1.4 +/*
     1.5 +** 2004 May 22
     1.6 +**
     1.7 +** The author disclaims copyright to this source code.  In place of
     1.8 +** a legal notice, here is a blessing:
     1.9 +**
    1.10 +**    May you do good and not evil.
    1.11 +**    May you find forgiveness for yourself and forgive others.
    1.12 +**    May you share freely, never taking more than you give.
    1.13 +**
    1.14 +******************************************************************************
    1.15 +**
    1.16 +** This header file defined OS-specific features for OS/2.
    1.17 +*/
    1.18 +#ifndef _SQLITE_OS_OS2_H_
    1.19 +#define _SQLITE_OS_OS2_H_
    1.20 +
    1.21 +/*
    1.22 +** standard include files.
    1.23 +*/
    1.24 +#include <sys/types.h>
    1.25 +#include <sys/stat.h>
    1.26 +#include <fcntl.h>
    1.27 +#include <unistd.h>
    1.28 +
    1.29 +/*
    1.30 +** Macros used to determine whether or not to use threads.  The
    1.31 +** SQLITE_UNIX_THREADS macro is defined if we are synchronizing for
    1.32 +** Posix threads and SQLITE_W32_THREADS is defined if we are
    1.33 +** synchronizing using Win32 threads.
    1.34 +*/
    1.35 +/* this mutex implementation only available with EMX */
    1.36 +#if defined(THREADSAFE) && THREADSAFE
    1.37 +# include <sys/builtin.h>
    1.38 +# include <sys/smutex.h>
    1.39 +# define SQLITE_OS2_THREADS 1
    1.40 +#endif
    1.41 +
    1.42 +/*
    1.43 +** The OsFile structure is a operating-system independing representation
    1.44 +** of an open file handle.  It is defined differently for each architecture.
    1.45 +**
    1.46 +** This is the definition for Unix.
    1.47 +**
    1.48 +** OsFile.locktype takes one of the values SHARED_LOCK, RESERVED_LOCK,
    1.49 +** PENDING_LOCK or EXCLUSIVE_LOCK.
    1.50 +*/
    1.51 +typedef struct OsFile OsFile;
    1.52 +struct OsFile {
    1.53 +     int h;        /* The file descriptor (LHANDLE) */
    1.54 +     int locked;              /* True if this user holds the lock */
    1.55 +     int delOnClose;          /* True if file is to be deleted on close */
    1.56 +     char *pathToDel;         /* Name of file to delete on close */
    1.57 +     unsigned char locktype;   /* The type of lock held on this fd */
    1.58 +     unsigned char isOpen;   /* True if needs to be closed */
    1.59 +     unsigned char fullSync;
    1.60 +};
    1.61 +
    1.62 +/*
    1.63 +** Maximum number of characters in a temporary file name
    1.64 +*/
    1.65 +#define SQLITE_TEMPNAME_SIZE 200
    1.66 +
    1.67 +/*
    1.68 +** Minimum interval supported by sqlite3OsSleep().
    1.69 +*/
    1.70 +#define SQLITE_MIN_SLEEP_MS 1
    1.71 +
    1.72 +#ifndef SQLITE_DEFAULT_FILE_PERMISSIONS
    1.73 +# define SQLITE_DEFAULT_FILE_PERMISSIONS 0600
    1.74 +#endif
    1.75 +
    1.76 +#endif /* _SQLITE_OS_OS2_H_ */