加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.cpp 997 Bytes
一键复制 编辑 原始数据 按行查看 历史
jice1001 提交于 2016-09-07 10:38 . 修改文件头注释
/*
* main.cpp
* Created on: Dec 18, 2015
* Author: zhangyalei
*/
#include <signal.h>
#include "Time_Value.h"
#include "Debug_Server.h"
#include "Daemon_Server.h"
#include "Server_Config.h"
#include "Public_Struct.h"
#include "Log.h"
static void sighandler(int sig_no) { exit(0); } /// for gprof need normal exit
int main(int argc, char *argv[]) {
srand(Time_Value::gettimeofday().sec() + Time_Value::gettimeofday().usec());
srandom(Time_Value::gettimeofday().sec() + Time_Value::gettimeofday().usec());
signal(SIGPIPE, SIG_IGN);
signal(SIGUSR1, sighandler);
SERVER_CONFIG->load_server_config();
int server_type = SERVER_CONFIG->server_misc()["server_type"].asInt();
if (server_type == MULTI_PROCESS) {
DAEMON_SERVER->init(argc, argv);
DAEMON_SERVER->start(argc, argv);
} else if (server_type == MULTI_THREAD) {
DEBUG_SERVER->init(argc, argv);
DEBUG_SERVER->start(argc, argv);
} else {
LOG_FATAL("server start type = %d error abort", server_type);
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化