add build system using Core Library

This commit is contained in:
Sukchan Lee
2017-02-02 20:34:37 +09:00
parent ea7950b2ea
commit fdf97f47bb
104 changed files with 22806 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#ifndef __CORE_PARAM_H__
#define __CORE_PARAM_H__
#define MAX_NUM_OF_THREAD 128
#define MAX_NUM_OF_THREADATTR MAX_NUM_OF_THREAD
#define MAX_NUM_OF_MUTEX 512
#define MAX_NUM_OF_COND 512
#define MAX_NUM_OF_RWLOCK 512
#define MAX_NUM_OF_SEMAPHORE 512
#define MAX_NUM_OF_FILE 256
#define MAX_FILENAME_SIZE 256
#define MAX_DIRNAME_SIZE 256
#define MAX_NUM_OF_TIMER 1024
#define MAX_SIG_DESC_SIZE 256
#endif /* ! __CORE_PARAM_H__ */