All .c files are moved to .cxx files, so that gcc interprets it as c++ file.
[csql.git] / csql.conf
blobb4df911c60d83bae581605ccfc664f941d27fb7f
1 # CSQL System Configuration File
3 # Page size. Each database is logically divided into pages and allocation happens 
4 # in this unit of pages. Increasing this value will reduce frequent allocation of pages. 
5 PAGE_SIZE= 8192
7 #Total number of active transactions that can run concurrently in the system
8 MAX_TRANS = 100
10 #Total number of client process/threads which can connect and work with the 
11 # database concurrently
12 MAX_PROCS = 100
14 # Maximum size of the system database.
15 MAX_SYS_DB_SIZE=104857600
17 #Maximum size of the user database file.
18 MAX_DB_SIZE=104857600
20 #Shared memory key to be used by the system to create and locate system database.
21 SYS_DB_KEY=2222
23 #Shared memory key to be used by the system to create and locate user database.
24 USER_DB_KEY=5555
26 #Give full path for the log file where important system actions are stored.
27 LOG_FILE=/tmp/log.out
29 #The virtual memory start address at which the shared memory segment 
30 # will be created and attached. 
31 MAP_ADDRESS=400000000
33 #Lock timeout interval seconds
34 MUTEX_TIMEOUT_SECS=0
35 MUTEX_TIMEOUT_USECS=10