pcs_shutdown.h

来自「unix 下用pro*c tuxedo 开发的东西」· C头文件 代码 · 共 25 行

H
25
字号
/*
//File name: "Pcs_ShutDown.h"
//Author: Mr. Zhujingkun
//Create Date:2000,04,01
//This is the head file for the main file "Pcs_ShutDown.c"
*/
#ifndef Pcs_ShutDown
#define Pcs_ShutDown


//ERROR_LOG_FILE located in :$HOME/log directory
#define ERROR_LOG_FILE 				"/usr/bkfx/log/errlog"
#define STARTUP_PROCESS_LIST	 	"/usr/bkfx/etc/StartUpProcessListFile"
#define CONFIG_FILE_FOR_TIMEINTERVAL 		"/usr/bkfx/etc/TimeIntervalFile"
#define DEFAULT_TIMEINTERVAL 			5  		//Used when cannot find the specified.
#define MAX_LINE_LEN 				500   		//The max length of a text file used here
#define TOTAL_PROCESS_NUMBER		18			//Number of processes to be forked
#define STARTUP_PROCESS_ID_LIST	 	"/usr/bkfx/etc/ProcessIDListFile"

//DEFINE function prototype
void ErrorLog( const char* sErrorMessage );
int myapi_ReadALine( char* cLine, FILE* hTable );

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?