37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
/***************************************************************************
|
|
cc_statd Worker Header ( Worker.h )
|
|
-----------------------------------------
|
|
|
|
begin : 2013/05/30
|
|
copyright : (C) 2013 Solbox Inc.
|
|
author : Development 1 Team
|
|
- 2013/05/30 - 1st dadamin
|
|
email : dev1@solbox.com
|
|
version : 3.2.0
|
|
|
|
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_PROCESS_H__
|
|
#define __WORKER_PROCESS_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
/// @brief Worker Process 재생성(fork) 처리 함수
|
|
/// @return 생성 성공시 true, 실패시에는 false 를 반환.
|
|
bool ReMakeProcessWorker( bool isDaemon, int killpid );
|
|
|
|
/// @brief Worker Process 생성(fork) 처리 함수
|
|
/// @return 생성 성공시 true, 실패시에는 false 를 반환.
|
|
bool MakeProcessWorker( bool isDaemon );
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __WORKER_PROCESS_H__ */
|
|
|
|
|