source: libcf/trunk/include/cf_thread.h@ 66

Last change on this file since 66 was 66, checked in by cheese, 11 years ago

#1 add codec module (bin <-> hex-string)

File size: 949 bytes
Line 
1/**
2 * @file cf_thread.h
3 * @author myusgun <myusgun@gmail.com>
4 *
5 * @remark 멀티스레드 및 뮤텍스 지원
6 *
7 * @example thread.c
8 */
9#ifndef __CF_THREAD_H__
10#define __CF_THREAD_H__
11
12#include "cf_base.h"
13
14/** 스레드 워커 함수 프로토타입 */
15typedef int (* CF_Thread_Function) (void *);
16
17/** 스레드 아이디 */
18typedef void * CF_Thread;
19
20/** 뮤텍스 아이디 */
21typedef void * CF_Mutex;
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27CF_EXPORT int
28CF_Thread_Create (CF_Thread * threadID,
29 CF_Thread_Function callback,
30 void * arg);
31
32CF_EXPORT int
33CF_Thread_Release (CF_Thread * threadID);
34
35CF_EXPORT int
36CF_Thread_Join (CF_Thread * threadID);
37
38CF_EXPORT int
39CF_Mutex_Create (CF_Mutex * mutex);
40
41CF_EXPORT int
42CF_Mutex_Destory (CF_Mutex * mutex);
43
44CF_EXPORT int
45CF_Mutex_Lock (CF_Mutex * mutex);
46
47CF_EXPORT int
48CF_Mutex_Unlock (CF_Mutex * mutex);
49
50#ifdef __cplusplus
51}
52#endif
53
54#endif // #ifndef __CF_THREAD_H__
Note: See TracBrowser for help on using the repository browser.