home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c004 / 2.ddi / CTGVAR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-18  |  3.0 KB  |  78 lines

  1. /*
  2.  *    global variables
  3.  *
  4.  *    This program is the CONFIDENTIAL and PROPRIETARY property 
  5.  *    of FairCom(R) Corporation. Any unauthorized use, reproduction or
  6.  *    transfer of this program is strictly prohibited.
  7.  *
  8.  *    Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989 FairCom Corporation
  9.  *    (Subject to limited distribution and
  10.  *     restricted disclosure only.)
  11.  *    *** ALL RIGHTS RESERVED ***
  12.  *
  13.  *    4006 West Broadway
  14.  *    Columbia, MO 65203
  15.  *
  16.  *
  17.  *    c-tree(R)    Version 4.3
  18.  *            Release C
  19.  *            February 7, 1989 17:30
  20.  *
  21.  */
  22.  
  23.             /* Global Variables */
  24.  
  25.  
  26. EXTERN TREEBUFF *ct_btree;    /* ptr to beg of b-tree buffers        */
  27. EXTERN KEYFILE  *ct_key;    /* ptr to beg of ct_key file structures    */
  28. EXTERN DATFILE  *ct_dat;    /* ptr to beg of data file structures    */
  29. EXTERN VATFILE  *ct_vat;    /* ptr to beg of var data file struc    */
  30. EXTERN TEXT    *ct_origin;    /* ptr to main index buffer area    */
  31.  
  32. EXTERN LONG    ct_npath[MAXLEV];/* array to trace path down B-tree. Assumes  */
  33.                 /* maximum of MAXLEV - 1 levels in B-tree.   */
  34. EXTERN COUNT *altseq;        /* pointer to alternative collating sequence */
  35.                     
  36. EXTERN TEXT ct_indkey[MAXLEN+1];/* storage for key values found during    */
  37.                 /* indexing operations             */
  38. EXTERN TEXT ct_dupkey[MAXLEN+1];/* for searches of duplicate keys */
  39. EXTERN TEXT spkey[MAXLEN+1];    /* temporary storage for key values during */
  40.                 /* node updates                */
  41.  
  42. EXTERN COUNT ct_elm;        /* position within B-Tree node    */
  43. EXTERN COUNT ct_tky;        /* result of comparison between target    */
  44.                 /* value and index entry.        */
  45.                 /* ct_tky < 0 => target < index entry    */
  46.                 /*      = 0 => target = index entry    */
  47.                 /*      > 0 => target > index entry     */
  48. EXTERN COUNT ct_tkp;        /* previous value of ct_tky        */
  49. EXTERN COUNT ct_sfxctp;        /* previous value of suffix count    */
  50.  
  51. EXTERN COUNT ct_mxfil;        /* maximum files specified in intree.     */
  52. EXTERN COUNT ct_mxbuf;        /* maximum buffers specified in intree     */
  53. EXTERN COUNT ct_ndsec;        /* # of sectors per node specified in intree */
  54. EXTERN COUNT ct_numvfil;    /* number of virtual files open        */
  55.  
  56. EXTERN LONG    ct_lnode;    /* last node found during walk down tree */
  57. EXTERN LONG    ct_fnode;    /* node found during search/retrieval    */
  58. EXTERN UCOUNT  ct_lacs;        /* counter to determine relative age of  */
  59.                 /* buffer activity. each time buffer is used */
  60.                 /* nodacs for buffer is set to ct_lacs++  */
  61. EXTERN UCOUNT  ct_lfil;        /* counter to track lru file for virtual */
  62.                 /* opens and closes             */
  63.  
  64. EXTERN LONG    ct_nwnod;    /* pointer to new node */
  65. EXTERN COUNT   btlev;        /* b-tree level counter. used as index of */
  66.                 /* ct_npath                  */
  67. EXTERN COUNT   uerr_cod;    /* user error cod */
  68. EXTERN TEXT    ct_buf[CTBUFSIZ];/* temporary io buffer */
  69. EXTERN COUNT   ct_ver;        /* defines configuration options */
  70. EXTERN LONG    ct_gsrl;        /* next serial number for data file */
  71.  
  72. #ifdef CTSERVER
  73. EXTERN RECLOK *ct_frelst;    /* pointer to free list of lock structs */
  74. EXTERN RECLOK *ct_loklst;    /* pointer to lock structs */
  75. #endif
  76.  
  77. /* end of ctgvar.h  */
  78.