mach.h 287 B

1234567891011121314
  1. #ifndef _MACH_H
  2. #define _MACH_H
  3. #include <time.h>
  4. #include <mach/mach_time.h>
  5. // there is no CLOCK_REALTIME or CLOCK_MONOTONIC on MacOS platform
  6. #define CLOCK_REALTIME 0
  7. #define CLOCK_MONOTONIC 0
  8. // MacOS doesn't support the flag MSG_NOSIGNAL
  9. #define MSG_NOSIGNAL SO_NOSIGPIPE
  10. #endif