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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996, 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: log.src,v 10.12 2000/02/17 20:24:10 bostic Exp $
  8.  */
  9. PREFIX log
  10. INCLUDE #include "db_config.h"
  11. INCLUDE
  12. INCLUDE #ifndef NO_SYSTEM_INCLUDES
  13. INCLUDE #include <sys/types.h>
  14. INCLUDE
  15. INCLUDE #include <ctype.h>
  16. INCLUDE #include <errno.h>
  17. INCLUDE #include <string.h>
  18. INCLUDE #endif
  19. INCLUDE
  20. INCLUDE #include "db_int.h"
  21. INCLUDE #include "db_page.h"
  22. INCLUDE #include "db_dispatch.h"
  23. INCLUDE #include "db_am.h"
  24. INCLUDE #include "log.h"
  25. INCLUDE #include "txn.h"
  26. INCLUDE
  27. /* Used for registering name/id translations at open or close. */
  28. DEPRECATED register1 1
  29. ARG opcode u_int32_t lu
  30. DBT name DBT s
  31. DBT uid DBT s
  32. ARG fileid int32_t ld
  33. ARG ftype DBTYPE lx
  34. END
  35. BEGIN register 2
  36. ARG opcode u_int32_t lu
  37. DBT name DBT s
  38. DBT uid DBT s
  39. ARG fileid int32_t ld
  40. ARG ftype DBTYPE lx
  41. ARG meta_pgno db_pgno_t lu
  42. END