1 Star 0 Fork 0

codergeek/neuvector_debug

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
base.h 566 Bytes
一键复制 编辑 原始数据 按行查看 历史
becitsthere 提交于 2021-12-17 17:18 . Add initial source code
#ifndef __BASE_H__
#define __BASE_H__
#include <inttypes.h>
typedef unsigned char bool;
#undef true
#undef false
#define true 1
#define false 0
#define max(x,y) (((x)>(y))?(x):(y))
#define min(x,y) (((x)<(y))?(x):(y))
#ifndef likely
# define likely(x) __builtin_expect(!!(x), 1)
#endif
#ifndef unlikely
# define unlikely(x) __builtin_expect(!!(x), 0)
#endif
#define DP_MNT_SHM_NAME "/dp_mnt.shm"
#define MAX_DP_THREADS 4
typedef struct dp_mnt_shm_ {
uint32_t dp_hb[MAX_DP_THREADS];
bool dp_active[MAX_DP_THREADS];
} dp_mnt_shm_t;
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/codergeek/neuvector_debug.git
[email protected]:codergeek/neuvector_debug.git
codergeek
neuvector_debug
neuvector_debug
v5.0.0

搜索帮助