#include #include "bmc_main.h" #include "ipmb_thread.h" /* * ipmb thread * Author: Jimbo */ void *ipmb_main(void *args) { printf("start ipmb_main thread.\n"); while(1) { // printf("this is ipmb thread!\n"); sleep(4); } }