/* * ===================================================================================== * * Filename: center_main.cc * * Description: * * Version: 1.0 * Created: 2021年04月13日 16时16分26秒 * Revision: none * Compiler: gcc * * Author: Li Chao (), lichao@aiotlink.com * Organization: * * ===================================================================================== */ #include "box.h" #include "center.h" #include "defs.h" #include "signalhandle.h" int center_main(int argc, const char *argv[]) { BHCenter center(BHomeShm()); center.Start(); WaitForSignals({SIGINT, SIGTERM}); // BHomeShm().Remove(); // remove ? return 0; } namespace { static bool install = BoxInstall("bhshmq_center", center_main, "bhome center program."); }