dev 23.11.4 13:54

This commit is contained in:
zzy 2023-11-04 13:54:38 +08:00
parent 71820652af
commit 18d3be81bb
6 changed files with 35 additions and 3 deletions

View File

@ -3,7 +3,8 @@
#include <assert.h>
#include <stddef.h>
#include "sysenv.h"
#include <sysenv.h>
#if _OS_WIN
#elif _OS_LINUX

View File

@ -5,7 +5,7 @@
#include <stdint.h>
#include <stdarg.h>
#include "sysenv.h"
#include <sysenv.h>
#if _OS_WIN
#elif _OS_LINUX

View File

@ -4,7 +4,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "sysenv.h"
#include <sysenv.h>
#if _OS_WIN
#define WIN_PART 1

26
include/tthreadpool.h Normal file
View File

@ -0,0 +1,26 @@
#ifndef _TTHREAD_POOL_H_
#define _TTHREAD_POOL_H_
#include <sysenv.h>
#include <tthread.h>
#if _OS_WIN
#elif _OS_LINUX
#else
#error "Not Supported Operator System"
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif // _TTHREAD_POOL_H_

View File

@ -0,0 +1 @@
#include <bkfifo.h>

View File

@ -0,0 +1,3 @@
#include <tthreadpool.h>
#include <stdio.h>
#include <stdarg.h>