37 lines
858 B
C
37 lines
858 B
C
/****************************************************************************
|
|
Worker::Control process main
|
|
-----------------------------------------
|
|
|
|
begin : 2015/08/25
|
|
copyright : (C) 2005 Solbox Inc.
|
|
author : Dev Storage Team
|
|
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_CONTROL_H__
|
|
#define __WORKER_CONTROL_H__
|
|
|
|
#include <unistd.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
// Worker::Control 프로세스의 Main 역활을 수행하기 위한 함수.
|
|
int WorkerControlMain( void );
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* __WORKER_CONTROL_H__ */
|
|
|