]> git.ipfire.org Git - thirdparty/glibc.git/blame - db2/include/os_func.h
Update.
[thirdparty/glibc.git] / db2 / include / os_func.h
CommitLineData
cc3fa755
UD
1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 1997
5 * Sleepycat Software. All rights reserved.
6 *
af69217f 7 * @(#)os_func.h 10.5 (Sleepycat) 12/4/97
cc3fa755
UD
8 */
9
10/* Calls which can be replaced by the application. */
11struct __db_jumptab {
cc3fa755
UD
12 int (*db_close) __P((int)); /* DB_FUNC_CLOSE */
13 void (*db_dirfree) __P((char **, int)); /* DB_FUNC_DIRFREE */
14 int (*db_dirlist) /* DB_FUNC_DIRLIST */
15 __P((const char *, char ***, int *));
16 int (*db_exists) /* DB_FUNC_EXISTS */
17 __P((const char *, int *));
18 void (*db_free) __P((void *)); /* DB_FUNC_FREE */
19 int (*db_fsync) __P((int)); /* DB_FUNC_FSYNC */
af69217f
UD
20 int (*db_ioinfo) __P((const char *, /* DB_FUNC_IOINFO */
21 int, u_int32_t *, u_int32_t *, u_int32_t *));
cc3fa755
UD
22 void *(*db_malloc) __P((size_t)); /* DB_FUNC_MALLOC */
23 int (*db_map) /* DB_FUNC_MAP */
24 __P((int, size_t, int, int, void **));
25 int (*db_open) /* DB_FUNC_OPEN */
26 __P((const char *, int, ...));
27 ssize_t (*db_read) __P((int, void *, size_t)); /* DB_FUNC_READ */
28 void *(*db_realloc) __P((void *, size_t)); /* DB_FUNC_REALLOC */
29 int (*db_seek) /* DB_FUNC_SEEK */
30 __P((int, size_t, db_pgno_t, u_long, int));
31 int (*db_sleep) __P((u_long, u_long)); /* DB_FUNC_SLEEP */
32 char *(*db_strdup) __P((const char *)); /* DB_FUNC_STRDUP */
33 int (*db_unlink) __P((const char *)); /* DB_FUNC_UNLINK */
34 int (*db_unmap) __P((void *, size_t)); /* DB_FUNC_UNMAP */
35 ssize_t (*db_write) /* DB_FUNC_WRITE */
36 __P((int, const void *, size_t));
37 int (*db_yield) __P((void)); /* DB_FUNC_YIELD */
38};
39
40extern struct __db_jumptab __db_jump;
41
42/*
43 * Names used by DB to call through the jump table.
44 *
45 * The naming scheme goes like this: if the functionality the application can
46 * replace is the same as the DB functionality, e.g., calloc, or dirlist, then
47 * we use the name __db_XXX, and the application is expected to replace the
48 * complete functionality, which may or may not map directly to an ANSI C or
49 * POSIX 1003.1 interface. If the functionality that the aplication replaces
50 * only underlies what the DB os directory exports to other parts of DB, e.g.,
51 * read, then the name __os_XXX is used, and the application can only replace
52 * the underlying functionality. Under most circumstances, the os directory
53 * part of DB is the only code that should use the __os_XXX names, all other
54 * parts of DB should be calling __db_XXX functions.
55 */
cc3fa755
UD
56#define __os_close __db_jump.db_close /* __db_close is a wrapper. */
57#define __db_dirfree __db_jump.db_dirfree
58#define __db_dirlist __db_jump.db_dirlist
59#define __db_exists __db_jump.db_exists
60#define __db_free __db_jump.db_free
61#define __os_fsync __db_jump.db_fsync /* __db_fsync is a wrapper. */
62#define __db_ioinfo __db_jump.db_ioinfo
cc3fa755
UD
63#define __db_map __db_jump.db_map
64#define __os_open __db_jump.db_open /* __db_open is a wrapper. */
65#define __os_read __db_jump.db_read /* __db_read is a wrapper. */
cc3fa755
UD
66#define __db_seek __db_jump.db_seek
67#define __db_sleep __db_jump.db_sleep
68#define __db_strdup __db_jump.db_strdup
69#define __os_unlink __db_jump.db_unlink /* __db_unlink is a wrapper. */
70#define __db_unmap __db_jump.db_unmap
71#define __os_write __db_jump.db_write /* __db_write is a wrapper. */
72#define __db_yield __db_jump.db_yield