00001
00002
00003
00004
00005
00006
00007 #include "config.h"
00008
00009 #ifndef lint
00010 static const char revid[] = "$Id: log__compare_8c-source.html,v 1.1 2008/06/08 10:20:19 sebdiaz Exp $";
00011 #endif
00012
00013 #ifndef NO_SYSTEM_INCLUDES
00014 #include <sys/types.h>
00015 #endif
00016
00017 #include "db_int.h"
00018
00019
00020
00021
00022
00023 int
00024 CDB_log_compare(lsn0, lsn1)
00025 const DB_LSN *lsn0, *lsn1;
00026 {
00027 if (lsn0->file != lsn1->file)
00028 return (lsn0->file < lsn1->file ? -1 : 1);
00029
00030 if (lsn0->offset != lsn1->offset)
00031 return (lsn0->offset < lsn1->offset ? -1 : 1);
00032
00033 return (0);
00034 }