db-4.1.17 orphans.
authorjbj <devnull@localhost>
Wed, 14 Aug 2002 19:38:59 +0000 (19:38 +0000)
committerjbj <devnull@localhost>
Wed, 14 Aug 2002 19:38:59 +0000 (19:38 +0000)
CVS patchset: 5635
CVS date: 2002/08/14 19:38:59

13 files changed:
db/common/util_arg.c
db/os/os_clock.c
db/os_win32/os_clock.c
db/test/bigfile001.tcl
db/test/scr016/TestAppendRecno.java
db/test/scr016/TestAssociate.java
db/test/scr016/TestDbtFlags.java
db/test/scr016/TestGetSetMethods.java
db/test/scr016/TestKeyRange.java
db/test/scr016/TestLockVec.java
db/test/scr016/TestLogc.java
db/test/scr016/TestOpenEmpty.java
db/test/scr016/TestRpcServer.java

index f69c153..6499529 100644 (file)
@@ -1,14 +1,14 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 2001
+ * Copyright (c) 2001-2002
  *     Sleepycat Software.  All rights reserved.
  */
 
 #include "db_config.h"
 
 #ifndef lint
-static const char revid[] = "Id: util_arg.c,v 1.2 2001/10/04 21:11:48 bostic Exp ";
+static const char revid[] = "Id: util_arg.c,v 1.4 2002/02/01 18:15:30 bostic Exp ";
 #endif /* not lint */
 
 #ifndef NO_SYSTEM_INCLUDES
@@ -16,7 +16,6 @@ static const char revid[] = "Id: util_arg.c,v 1.2 2001/10/04 21:11:48 bostic Exp
 #endif
 
 #include "db_int.h"
-#include "common_ext.h"
 
 static char *__db_strsep __P((char **, const char *));
 
index b6218a8..581d04d 100644 (file)
@@ -1,14 +1,14 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 2001
+ * Copyright (c) 2001-2002
  *     Sleepycat Software.  All rights reserved.
  */
 
 #include "db_config.h"
 
 #ifndef lint
-static const char revid[] = "Id: os_clock.c,v 1.6 2001/09/07 18:17:49 krinsky Exp ";
+static const char revid[] = "Id: os_clock.c,v 1.9 2002/03/29 20:46:44 bostic Exp ";
 #endif /* not lint */
 
 #ifndef NO_SYSTEM_INCLUDES
@@ -29,7 +29,6 @@ static const char revid[] = "Id: os_clock.c,v 1.6 2001/09/07 18:17:49 krinsky Ex
 #endif
 
 #include "db_int.h"
-#include "os_jump.h"
 
 /*
  * __os_clock --
index 7e73f5b..a506979 100644 (file)
@@ -1,14 +1,14 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 2001
+ * Copyright (c) 2001-2002
  *     Sleepycat Software.  All rights reserved.
  */
 
 #include "db_config.h"
 
 #ifndef lint
-static const char revid[] = "Id: os_clock.c,v 1.2 2001/08/18 17:39:08 dda Exp ";
+static const char revid[] = "Id: os_clock.c,v 1.7 2002/07/12 18:56:53 bostic Exp ";
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -16,13 +16,10 @@ static const char revid[] = "Id: os_clock.c,v 1.2 2001/08/18 17:39:08 dda Exp ";
 #include <string.h>
 
 #include "db_int.h"
-#include "os_jump.h"
 
 /*
  * __os_clock --
  *     Return the current time-of-day clock in seconds and microseconds.
- *
- * PUBLIC: int __os_clock __P((DB_ENV *, u_int32_t *, u_int32_t *));
  */
 int
 __os_clock(dbenv, secsp, usecsp)
@@ -33,7 +30,7 @@ __os_clock(dbenv, secsp, usecsp)
 
        _ftime(&now);
        if (secsp != NULL)
-               *secsp = now.time;
+               *secsp = (u_int32_t)now.time;
        if (usecsp != NULL)
                *usecsp = now.millitm * 1000;
        return (0);
index 810745a..3c46ac8 100644 (file)
@@ -1,15 +1,15 @@
 # See the file LICENSE for redistribution information.
 #
-# Copyright (c) 2001
+# Copyright (c) 2001-2002
 #      Sleepycat Software.  All rights reserved.
 #
-# Id: bigfile001.tcl,v 11.5 2001/08/03 18:02:53 sandstro Exp 
+# Id: bigfile001.tcl,v 11.7 2002/08/10 13:39:26 bostic Exp 
 #
 # TEST bigfile001
 # TEST Create a database greater than 4 GB in size.  Close, verify.
-#      Grow the database somewhat.  Close, reverify.  Lather, rinse,
-#      repeat.  Since it will not work on all systems, this test is
-#      not run by default.
+# TEST Grow the database somewhat.  Close, reverify.  Lather, rinse,
+# TEST repeat.  Since it will not work on all systems, this test is
+# TEST not run by default.
 proc bigfile001 { method \
     { itemsize 4096 } { nitems 1048576 } { growby 5000 } { growtms 2 } args } {
        source ./include.tcl
index 5021ddb..56cfe64 100644 (file)
@@ -1,10 +1,10 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 1997, 1998, 1999, 2000
+ * Copyright (c) 1997-2002
  *     Sleepycat Software.  All rights reserved.
  *
- * Id: TestAppendRecno.java,v 1.2 2001/10/05 02:36:08 bostic Exp 
+ * Id: TestAppendRecno.java,v 1.3 2002/01/11 15:54:01 bostic Exp 
  */
 
 package com.sleepycat.test;
index 3bf2108..83b5438 100644 (file)
@@ -1,10 +1,10 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 1997-2001
+ * Copyright (c) 1997-2002
  *     Sleepycat Software.  All rights reserved.
  *
- * Id: TestAssociate.java,v 1.2 2001/10/05 02:36:08 bostic Exp 
+ * Id: TestAssociate.java,v 1.3 2002/01/11 15:54:01 bostic Exp 
  */
 
 package com.sleepycat.test;
index f72290a..0c30d8c 100644 (file)
@@ -1,10 +1,10 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 1997-2001
+ * Copyright (c) 1997-2002
  *     Sleepycat Software.  All rights reserved.
  *
- * Id: TestDbtFlags.java,v 1.2 2001/10/05 02:36:09 bostic Exp 
+ * Id: TestDbtFlags.java,v 1.3 2002/01/11 15:54:02 bostic Exp 
  */
 
 package com.sleepycat.test;
index d940aa2..71bdebe 100644 (file)
@@ -1,10 +1,10 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 2000
+ * Copyright (c) 2000-2002
  *     Sleepycat Software.  All rights reserved.
  *
- * Id: TestGetSetMethods.java,v 1.2 2001/10/05 02:36:09 bostic Exp 
+ * Id: TestGetSetMethods.java,v 1.3 2002/01/11 15:54:02 bostic Exp 
  */
 
 /*
index 0981233..83cba13 100644 (file)
@@ -4,10 +4,10 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 1997, 1998, 1999, 2000
+ * Copyright (c) 1997-2002
  *     Sleepycat Software.  All rights reserved.
  *
- * Id: TestKeyRange.java,v 1.2 2001/10/09 20:58:34 dda Exp 
+ * Id: TestKeyRange.java,v 1.3 2002/01/11 15:54:02 bostic Exp 
  */
 
 package com.sleepycat.test;
index 6b72be7..c0e82b1 100644 (file)
@@ -1,10 +1,10 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 1997, 1998, 1999, 2000
+ * Copyright (c) 1997-2002
  *     Sleepycat Software.  All rights reserved.
  *
- * Id: TestLockVec.java,v 1.2 2001/10/05 02:36:10 bostic Exp 
+ * Id: TestLockVec.java,v 1.3 2002/01/11 15:54:02 bostic Exp 
  */
 
 /*
index cb3df62..628abb0 100644 (file)
@@ -1,10 +1,10 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 1997, 1998, 1999, 2000
+ * Copyright (c) 1997-2002
  *     Sleepycat Software.  All rights reserved.
  *
- * Id: TestLogc.java,v 1.5 2001/10/16 15:40:54 dda Exp 
+ * Id: TestLogc.java,v 1.6 2002/01/11 15:54:03 bostic Exp 
  */
 
 /*
index d16d993..51de512 100644 (file)
@@ -1,10 +1,10 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 1997-2001
+ * Copyright (c) 1997-2002
  *     Sleepycat Software.  All rights reserved.
  *
- * Id: TestOpenEmpty.java,v 1.2 2001/10/05 02:36:10 bostic Exp 
+ * Id: TestOpenEmpty.java,v 1.3 2002/01/11 15:54:03 bostic Exp 
  */
 
 package com.sleepycat.test;
index 46294ef..5537700 100644 (file)
@@ -1,10 +1,10 @@
 /*-
  * See the file LICENSE for redistribution information.
  *
- * Copyright (c) 1997-2001
+ * Copyright (c) 1997-2002
  *     Sleepycat Software.  All rights reserved.
  *
- * Id: TestRpcServer.java,v 1.2 2001/10/05 02:36:10 bostic Exp 
+ * Id: TestRpcServer.java,v 1.3 2002/01/11 15:54:03 bostic Exp 
  */
 
 package com.sleepycat.test;