15 Star 25 Fork 3

eclipser/thread

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Log.cpp 800 Bytes
一键复制 编辑 原始数据 按行查看 历史
Administrator 提交于 2014-01-17 16:44 . 导入断言,日志等
#include "Log.h"
#include "Common.h"
#include <stdarg.h>
#include <string.h>
#include <stdio.h>
// 保证日志记录线程安全
pthread_mutex_t log_mutex;
Log::Log() {
}
Log::~Log() {
}
void Log::SaveLog(const char* filename, const char* msg, ...) {
__ENTER_FUNCTION
pthread_mutex_lock(&log_mutex);
char buffer[2048];
memset(buffer, 0, 2048);
va_list argptr;
try {
va_start(argptr, msg);
vsprintf(buffer, msg, argptr);
va_end(argptr);
FILE* f = fopen(filename, "ab");
fwrite(buffer, 1, strlen(buffer), f);
fclose(f);
printf(buffer);
} catch (...) {
printf("a big error here");
}
pthread_mutex_unlock(&log_mutex);
return;
__LEAVE_FUNCTION
pthread_mutex_unlock(&log_mutex);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/eclipser/thread.git
[email protected]:eclipser/thread.git
eclipser
thread
thread
master

搜索帮助