home *** CD-ROM | disk | FTP | other *** search
- /*
- * global variables
- *
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this program is strictly prohibited.
- *
- * Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989 FairCom Corporation
- * (Subject to limited distribution and
- * restricted disclosure only.)
- * *** ALL RIGHTS RESERVED ***
- *
- * 4006 West Broadway
- * Columbia, MO 65203
- *
- *
- * c-tree(R) Version 4.3
- * Release C
- * February 7, 1989 17:30
- *
- */
-
- /* Global Variables */
-
-
- EXTERN TREEBUFF *ct_btree; /* ptr to beg of b-tree buffers */
- EXTERN KEYFILE *ct_key; /* ptr to beg of ct_key file structures */
- EXTERN DATFILE *ct_dat; /* ptr to beg of data file structures */
- EXTERN VATFILE *ct_vat; /* ptr to beg of var data file struc */
- EXTERN TEXT *ct_origin; /* ptr to main index buffer area */
-
- EXTERN LONG ct_npath[MAXLEV];/* array to trace path down B-tree. Assumes */
- /* maximum of MAXLEV - 1 levels in B-tree. */
- EXTERN COUNT *altseq; /* pointer to alternative collating sequence */
-
- EXTERN TEXT ct_indkey[MAXLEN+1];/* storage for key values found during */
- /* indexing operations */
- EXTERN TEXT ct_dupkey[MAXLEN+1];/* for searches of duplicate keys */
- EXTERN TEXT spkey[MAXLEN+1]; /* temporary storage for key values during */
- /* node updates */
-
- EXTERN COUNT ct_elm; /* position within B-Tree node */
- EXTERN COUNT ct_tky; /* result of comparison between target */
- /* value and index entry. */
- /* ct_tky < 0 => target < index entry */
- /* = 0 => target = index entry */
- /* > 0 => target > index entry */
- EXTERN COUNT ct_tkp; /* previous value of ct_tky */
- EXTERN COUNT ct_sfxctp; /* previous value of suffix count */
-
- EXTERN COUNT ct_mxfil; /* maximum files specified in intree. */
- EXTERN COUNT ct_mxbuf; /* maximum buffers specified in intree */
- EXTERN COUNT ct_ndsec; /* # of sectors per node specified in intree */
- EXTERN COUNT ct_numvfil; /* number of virtual files open */
-
- EXTERN LONG ct_lnode; /* last node found during walk down tree */
- EXTERN LONG ct_fnode; /* node found during search/retrieval */
- EXTERN UCOUNT ct_lacs; /* counter to determine relative age of */
- /* buffer activity. each time buffer is used */
- /* nodacs for buffer is set to ct_lacs++ */
- EXTERN UCOUNT ct_lfil; /* counter to track lru file for virtual */
- /* opens and closes */
-
- EXTERN LONG ct_nwnod; /* pointer to new node */
- EXTERN COUNT btlev; /* b-tree level counter. used as index of */
- /* ct_npath */
- EXTERN COUNT uerr_cod; /* user error cod */
- EXTERN TEXT ct_buf[CTBUFSIZ];/* temporary io buffer */
- EXTERN COUNT ct_ver; /* defines configuration options */
- EXTERN LONG ct_gsrl; /* next serial number for data file */
-
- #ifdef CTSERVER
- EXTERN RECLOK *ct_frelst; /* pointer to free list of lock structs */
- EXTERN RECLOK *ct_loklst; /* pointer to lock structs */
- #endif
-
- /* end of ctgvar.h */
-