7 #ifndef LINUX_LIBV2_SOURCE_TQCOMMON_TQ_COMMON_H_ 8 #define LINUX_LIBV2_SOURCE_TQCOMMON_TQ_COMMON_H_ 36 #define TQ_VERSION "1.0.3" 37 //#define dbg(fmt,args...) printf("[common]:%s:%d:" fmt,__func__,__LINE__,##args) 38 #define dbg(fmt, args...) 41 #define COMMON_API extern "C" COMMON_API int tq_write_file_int(char *filename, unsigned int value)
往文件写入整型
COMMON_API int tq_getPidByName(char *task_name, int *pid)
通过进程名字获取进程号
COMMON_API int tq_read_file_int(char *filename, int *value)
从文件中读取int的数据
COMMON_API const char * tq_get_libversion(void)
获取二次封装库版本
COMMON_API int tq_read_file_str(char *filename, char *value, int size)
读取文件内容
COMMON_API int tq_write_file_str(char *filename, char *value, int size)
往文件里写字符串,文件不存在则创建
COMMON_API int run_cmd(const char *fmt,...)
运行命令
COMMON_API int tq_getNameByPid(int pid, char *task_name)
通过进程号获取进程名字
COMMON_API int tq_check_fd_fine(int fd)
获取板卡信息
COMMON_API int tq_check_file(char *filename)
检查文件是否存在