log_compare.c
上传用户: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. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: log_compare.c,v 11.3 2000/02/14 02:59:59 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #endif
  14. #include "db_int.h"
  15. /*
  16.  * log_compare --
  17.  * Compare two LSN's; return 1, 0, -1 if first is >, == or < second.
  18.  */
  19. int
  20. log_compare(lsn0, lsn1)
  21. const DB_LSN *lsn0, *lsn1;
  22. {
  23. if (lsn0->file != lsn1->file)
  24. return (lsn0->file < lsn1->file ? -1 : 1);
  25. if (lsn0->offset != lsn1->offset)
  26. return (lsn0->offset < lsn1->offset ? -1 : 1);
  27. return (0);
  28. }