123456789101112131415161718 |
- #include <stdio.h>
- #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);
- }
- }
|