summaryrefslogtreecommitdiff
path: root/bdb/examples_c/ex_tpcb.h
diff options
context:
space:
mode:
Diffstat (limited to 'bdb/examples_c/ex_tpcb.h')
-rw-r--r--bdb/examples_c/ex_tpcb.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/bdb/examples_c/ex_tpcb.h b/bdb/examples_c/ex_tpcb.h
deleted file mode 100644
index 22b79c37e80..00000000000
--- a/bdb/examples_c/ex_tpcb.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*-
- * See the file LICENSE for redistribution information.
- *
- * Copyright (c) 1996-2002
- * Sleepycat Software. All rights reserved.
- *
- * $Id: ex_tpcb.h,v 11.6 2002/01/11 15:52:06 bostic Exp $
- */
-
-#ifndef _TPCB_H_
-#define _TPCB_H_
-
-typedef enum { ACCOUNT, BRANCH, TELLER } FTYPE;
-
-#define TELLERS_PER_BRANCH 100
-#define ACCOUNTS_PER_TELLER 1000
-
-#define ACCOUNTS 1000000
-#define BRANCHES 10
-#define TELLERS 1000
-#define HISTORY 1000000
-#define HISTORY_LEN 100
-#define RECLEN 100
-#define BEGID 1000000
-
-typedef struct _defrec {
- u_int32_t id;
- u_int32_t balance;
- u_int8_t pad[RECLEN - sizeof(u_int32_t) - sizeof(u_int32_t)];
-} defrec;
-
-typedef struct _histrec {
- u_int32_t aid;
- u_int32_t bid;
- u_int32_t tid;
- u_int32_t amount;
- u_int8_t pad[RECLEN - 4 * sizeof(u_int32_t)];
-} histrec;
-#endif /* _TPCB_H_ */