os_jump.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: os_jump.h,v 11.3 2000/02/14 02:59:55 bostic Exp $
  8.  */
  9. /* Calls which can be replaced by the application. */
  10. struct __db_jumptab {
  11. int (*j_close) __P((int));
  12. void (*j_dirfree) __P((char **, int));
  13. int (*j_dirlist) __P((const char *, char ***, int *));
  14. int (*j_exists) __P((const char *, int *));
  15. void (*j_free) __P((void *));
  16. int (*j_fsync) __P((int));
  17. int (*j_ioinfo) __P((const char *,
  18.     int, u_int32_t *, u_int32_t *, u_int32_t *));
  19. void   *(*j_malloc) __P((size_t));
  20. int (*j_map) __P((char *, size_t, int, int, void **));
  21. int (*j_open) __P((const char *, int, ...));
  22. ssize_t (*j_read) __P((int, void *, size_t));
  23. void   *(*j_realloc) __P((void *, size_t));
  24. int (*j_rename) __P((const char *, const char *));
  25. int (*j_seek) __P((int, size_t, db_pgno_t, u_int32_t, int, int));
  26. int (*j_sleep) __P((u_long, u_long));
  27. int (*j_unlink) __P((const char *));
  28. int (*j_unmap) __P((void *, size_t));
  29. ssize_t (*j_write) __P((int, const void *, size_t));
  30. int (*j_yield) __P((void));
  31. };
  32. extern struct __db_jumptab __db_jump;