dummypthread.h 301 B

1234567891011121314
  1. #ifndef DUMMYPTHREAD_H
  2. #define DUMMYPTHREAD_H
  3. #define pthread_create(A, B, C, D)
  4. #define pthread_join(A, B)
  5. #define pthread_cancel(A)
  6. #define pthread_testcancel()
  7. #define pthread_mutex_init(A, B)
  8. #define pthread_mutex_destroy(A)
  9. #define pthread_mutex_lock(A)
  10. #define pthread_mutex_unlock(A)
  11. #endif