📄 fparamv3.h
字号:
/*
* PROGRAM: Lock manager
* MODULE: fparamv3.h
* DESCRIPTION: Version 3 file parameter definitions
*
* The contents of this file are subject to the Interbase Public
* License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy
* of the License at http://www.Inprise.com/IPL.html
*
* Software distributed under the License is distributed on an
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
* or implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code was created by Inprise Corporation
* and its predecessors. Portions created by Inprise Corporation are
* Copyright (C) Inprise Corporation.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
*/
#ifdef APOLLO
#define LOCK_HEADER "/interbase/lock_header"
#define EVENT_FILE "`node_data/isc_event.gbl"
#endif
#ifdef mpexl
#define LOCK_FILE "lockmngr"
#define LOCK_HEADER "lockhdr.data.starbase"
#define EVENT_FILE "event"
#endif
#ifdef NOHOSTNAME
#define LOCK_FILE "/usr/interbase/isc_lock.gbl"
#define EVENT_FILE "/usr/interbase/isc_event.gbl"
#else
#ifdef SMALL_FILE_NAMES
#define LOCK_FILE "/usr/interbase/isclm.%s"
#define EVENT_FILE "/usr/interbase/iscev.%s"
#endif
#endif
#ifdef VMS
#define EVENT_FILE "[000000]isc_event.%s"
#endif
#ifdef MSDOS
#define EVENT_FILE "/sharemem/gds_evnt.m0"
#endif
#ifndef EVENT_FILE
#define EVENT_FILE "/usr/interbase/isc_event.gbl.%s"
#endif
#define EVENT_DEFAULT_SIZE 32768
#define EVENT_EXTEND_SIZE 32768
#define EVENT_VERSION 1
#define EVENT_SEMAPHORES 1
#ifndef LOCK_FILE
#define LOCK_FILE "/usr/interbase/gds.lock.%s"
#endif
#ifndef LOCK_HEADER
#define LOCK_HEADER "/usr/interbase/lock_header"
#endif
#ifdef sun
#ifndef SUN3_3
#include <sys/types.h>
#include <sys/ipc.h>
#define SUNOS4
#ifndef i386
#define CSV
#endif
#endif
#endif
#ifdef linux
#include <sys/types.h>
#include <sys/ipc.h>
#ifndef i386
#define CSV
#endif
#endif
#ifdef CSV
/* Central server definitions taken from source/csv/csi.h */
#define CSI_FILE "/usr/interbase/isc_csv.%s"
#define CSI_DEFAULT_SIZE 262144
#define MAX_PROCESSES 16
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -