|
|
1.1 ! root 1: /* Copyright (c) 1983 Relational Technology Inc. */ ! 2: /* Constants that define the size of the lock device tables */ ! 3: /* These 4 constants can be changed on a per instalation basis */ ! 4: /* Do not edit anything else in this file!!! */ ! 5: # define _MAX_LKB 576 /* maximum # of locks */ ! 6: # define _MAX_RSB 320 /* maximum # of lockable objects */ ! 7: # define _RSB_HASH 163 /* hash buckets for object searching */ ! 8: # define _MAX_USER 64 /* maximum # of users */ ! 9: ! 10: ! 11: typedef struct _LKB LKB; ! 12: struct _LKB ! 13: { ! 14: char dummy[24]; ! 15: }; ! 16: ! 17: typedef struct _RSB RSB; ! 18: struct _RSB ! 19: { ! 20: char dummy[48]; ! 21: }; ! 22: ! 23: typedef struct _USR USR; ! 24: struct _USR ! 25: { ! 26: char dummy[8]; ! 27: }; ! 28: ! 29: typedef struct _QUEUE QUEUE; ! 30: struct _QUEUE ! 31: { ! 32: char dummy[8]; ! 33: }; ! 34:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.