ipmb_thread.c 243 B

123456789101112131415161718
  1. #include <stdio.h>
  2. #include "bmc_main.h"
  3. #include "ipmb_thread.h"
  4. /*
  5. * ipmb thread
  6. * Author: Jimbo
  7. */
  8. void *ipmb_main(void *args)
  9. {
  10. printf("start ipmb_main thread.\n");
  11. while(1)
  12. {
  13. // printf("this is ipmb thread!\n");
  14. sleep(4);
  15. }
  16. }