ThrdPrio.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /******************************************************************
  2. ******************************************************************
  3. *** **
  4. *** (C)Copyright 2012, American Megatrends Inc. **
  5. *** **
  6. *** All Rights Reserved. **
  7. *** **
  8. *** 5555 , Oakbrook Pkwy, Norcross, **
  9. *** **
  10. *** Georgia - 30093, USA. Phone-(770)-246-8600. **
  11. *** **
  12. ******************************************************************
  13. ******************************************************************
  14. ******************************************************************
  15. *
  16. * ThrdPrio.h
  17. * Initialize IPMI Interface's Thread Priority
  18. *
  19. ******************************************************************/
  20. #ifndef _THRDPRIO_H_
  21. #define _THRDPRIO_H_
  22. #include <pthread.h>
  23. extern void SetLANIfcPriority(pthread_t thread_id);
  24. extern void SetUSBIfcPriority(pthread_t thread_id);
  25. extern void SetIPMBIfcPriority(pthread_t thread_id);
  26. extern void SetKCSIfcPriority(pthread_t thread_id);
  27. extern void SetBTIfcPriority(pthread_t thread_id);
  28. extern void SetSerialIfcPriority(pthread_t thread_id);
  29. extern void SetUDSIfcPriority(pthread_t thread_id);
  30. #endif