log_compare.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996-2002
  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.6 2002/01/11 15:52:50 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.  * EXTERN: int log_compare __P((const DB_LSN *, const DB_LSN *));
  20.  */
  21. int
  22. log_compare(lsn0, lsn1)
  23. const DB_LSN *lsn0, *lsn1;
  24. {
  25. if (lsn0->file != lsn1->file)
  26. return (lsn0->file < lsn1->file ? -1 : 1);
  27. if (lsn0->offset != lsn1->offset)
  28. return (lsn0->offset < lsn1->offset ? -1 : 1);
  29. return (0);
  30. }