db-4.1.17 orphans.

CVS patchset: 5635
CVS date: 2002/08/14 19:38:59
This commit is contained in:
jbj 2002-08-14 19:38:59 +00:00
parent 41d4fce5c4
commit 2a3235eb27
13 changed files with 30 additions and 35 deletions

View File

@ -1,14 +1,14 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 2001 * Copyright (c) 2001-2002
* Sleepycat Software. All rights reserved. * Sleepycat Software. All rights reserved.
*/ */
#include "db_config.h" #include "db_config.h"
#ifndef lint #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 */ #endif /* not lint */
#ifndef NO_SYSTEM_INCLUDES #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 #endif
#include "db_int.h" #include "db_int.h"
#include "common_ext.h"
static char *__db_strsep __P((char **, const char *)); static char *__db_strsep __P((char **, const char *));

View File

@ -1,14 +1,14 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 2001 * Copyright (c) 2001-2002
* Sleepycat Software. All rights reserved. * Sleepycat Software. All rights reserved.
*/ */
#include "db_config.h" #include "db_config.h"
#ifndef lint #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 */ #endif /* not lint */
#ifndef NO_SYSTEM_INCLUDES #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 #endif
#include "db_int.h" #include "db_int.h"
#include "os_jump.h"
/* /*
* __os_clock -- * __os_clock --

View File

@ -1,14 +1,14 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 2001 * Copyright (c) 2001-2002
* Sleepycat Software. All rights reserved. * Sleepycat Software. All rights reserved.
*/ */
#include "db_config.h" #include "db_config.h"
#ifndef lint #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 */ #endif /* not lint */
#include <sys/types.h> #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 <string.h>
#include "db_int.h" #include "db_int.h"
#include "os_jump.h"
/* /*
* __os_clock -- * __os_clock --
* Return the current time-of-day clock in seconds and microseconds. * 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 int
__os_clock(dbenv, secsp, usecsp) __os_clock(dbenv, secsp, usecsp)
@ -33,7 +30,7 @@ __os_clock(dbenv, secsp, usecsp)
_ftime(&now); _ftime(&now);
if (secsp != NULL) if (secsp != NULL)
*secsp = now.time; *secsp = (u_int32_t)now.time;
if (usecsp != NULL) if (usecsp != NULL)
*usecsp = now.millitm * 1000; *usecsp = now.millitm * 1000;
return (0); return (0);

View File

@ -1,15 +1,15 @@
# See the file LICENSE for redistribution information. # See the file LICENSE for redistribution information.
# #
# Copyright (c) 2001 # Copyright (c) 2001-2002
# Sleepycat Software. All rights reserved. # 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 bigfile001
# TEST Create a database greater than 4 GB in size. Close, verify. # TEST Create a database greater than 4 GB in size. Close, verify.
# Grow the database somewhat. Close, reverify. Lather, rinse, # TEST Grow the database somewhat. Close, reverify. Lather, rinse,
# repeat. Since it will not work on all systems, this test is # TEST repeat. Since it will not work on all systems, this test is
# not run by default. # TEST not run by default.
proc bigfile001 { method \ proc bigfile001 { method \
{ itemsize 4096 } { nitems 1048576 } { growby 5000 } { growtms 2 } args } { { itemsize 4096 } { nitems 1048576 } { growby 5000 } { growtms 2 } args } {
source ./include.tcl source ./include.tcl

View File

@ -1,10 +1,10 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 1997, 1998, 1999, 2000 * Copyright (c) 1997-2002
* Sleepycat Software. All rights reserved. * 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; package com.sleepycat.test;

View File

@ -1,10 +1,10 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 1997-2001 * Copyright (c) 1997-2002
* Sleepycat Software. All rights reserved. * 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; package com.sleepycat.test;

View File

@ -1,10 +1,10 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 1997-2001 * Copyright (c) 1997-2002
* Sleepycat Software. All rights reserved. * 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; package com.sleepycat.test;

View File

@ -1,10 +1,10 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 2000 * Copyright (c) 2000-2002
* Sleepycat Software. All rights reserved. * 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
*/ */
/* /*

View File

@ -4,10 +4,10 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 1997, 1998, 1999, 2000 * Copyright (c) 1997-2002
* Sleepycat Software. All rights reserved. * 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; package com.sleepycat.test;

View File

@ -1,10 +1,10 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 1997, 1998, 1999, 2000 * Copyright (c) 1997-2002
* Sleepycat Software. All rights reserved. * 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
*/ */
/* /*

View File

@ -1,10 +1,10 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 1997, 1998, 1999, 2000 * Copyright (c) 1997-2002
* Sleepycat Software. All rights reserved. * 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
*/ */
/* /*

View File

@ -1,10 +1,10 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 1997-2001 * Copyright (c) 1997-2002
* Sleepycat Software. All rights reserved. * 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; package com.sleepycat.test;

View File

@ -1,10 +1,10 @@
/*- /*-
* See the file LICENSE for redistribution information. * See the file LICENSE for redistribution information.
* *
* Copyright (c) 1997-2001 * Copyright (c) 1997-2002
* Sleepycat Software. All rights reserved. * 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; package com.sleepycat.test;