43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
/****************************************************************************
|
|
Worker::TelegrafControl process main
|
|
-----------------------------------------
|
|
|
|
begin : 2021/05/07
|
|
copyright : (C) 2005 Solbox Inc.
|
|
author : huibong
|
|
email : huibong@solbox.com
|
|
version : 3.5
|
|
|
|
CopyRight(C) 2005 Solbox Inc. All Rights reserved.
|
|
Redistribution and use in source and binary forms, with or with out
|
|
modification, are not permitted in outside of Solbox Inc.
|
|
*****************************************************************************/
|
|
|
|
|
|
#ifndef __WORKER_TELEGRAF_CONTROL_H__
|
|
#define __WORKER_TELEGRAF_CONTROL_H__
|
|
|
|
#include <unistd.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Worker::TelegrafControl 프로세스의 Main 역활을 수행하기 위한 함수.
|
|
int WorkerTelegrafControlMain( void );
|
|
|
|
// 프로세스 종료 전 처리할 종료 관련 각 작업을 일괄로 처리하기 위한 함수.
|
|
void ReadyToExitWorkerTelegrafControl( void );
|
|
|
|
// Worker::TelegrafControl Process 의 signal 처리기...
|
|
void SetWorkerTelegrafControlSignalHandler( void );
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* __WORKER_TELEGRAF_CONTROL_H__ */
|
|
|