From 731946f4b90eb1173452dd30f1296dd825155d82 Mon Sep 17 00:00:00 2001 From: jbj Date: Wed, 21 Mar 2001 18:33:35 +0000 Subject: Initial revision CVS patchset: 4644 CVS date: 2001/03/21 18:33:35 --- db/examples_c/ex_tpcb.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 db/examples_c/ex_tpcb.h (limited to 'db/examples_c/ex_tpcb.h') diff --git a/db/examples_c/ex_tpcb.h b/db/examples_c/ex_tpcb.h new file mode 100644 index 000000000..ef90bc532 --- /dev/null +++ b/db/examples_c/ex_tpcb.h @@ -0,0 +1,39 @@ +/*- + * See the file LICENSE for redistribution information. + * + * Copyright (c) 1996, 1997, 1998, 1999, 2000 + * Sleepycat Software. All rights reserved. + * + * $Id: ex_tpcb.h,v 11.4 2000/05/17 19:21:02 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_ */ -- cgit v1.2.3