compat.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #ifndef __COMPAT_H__
  2. #define __COMPAT_H__
  3. #ifdef WIN32
  4. #include "config.h"
  5. #include <errno.h>
  6. #include <time.h>
  7. #include <pthread.h>
  8. #include <sys/time.h>
  9. #include "miner.h" // for timersub
  10. #include "util.h"
  11. #include <windows.h>
  12. #ifndef HAVE_LIBWINPTHREAD
  13. static inline int nanosleep(const struct timespec *req, struct timespec *rem)
  14. {
  15. struct timeval tstart;
  16. DWORD msecs;
  17. cgtime(&tstart);
  18. msecs = (req->tv_sec * 1000) + ((999999 + req->tv_nsec) / 1000000);
  19. if (SleepEx(msecs, true) == WAIT_IO_COMPLETION) {
  20. if (rem) {
  21. struct timeval tdone, tnow, tleft;
  22. tdone.tv_sec = tstart.tv_sec + req->tv_sec;
  23. tdone.tv_usec = tstart.tv_usec + ((999 + req->tv_nsec) / 1000);
  24. if (tdone.tv_usec > 1000000) {
  25. tdone.tv_usec -= 1000000;
  26. ++tdone.tv_sec;
  27. }
  28. cgtime(&tnow);
  29. if (timercmp(&tnow, &tdone, >))
  30. return 0;
  31. timersub(&tdone, &tnow, &tleft);
  32. rem->tv_sec = tleft.tv_sec;
  33. rem->tv_nsec = tleft.tv_usec * 1000;
  34. }
  35. errno = EINTR;
  36. return -1;
  37. }
  38. return 0;
  39. }
  40. #endif
  41. static inline int sleep(unsigned int secs)
  42. {
  43. struct timespec req, rem;
  44. req.tv_sec = secs;
  45. req.tv_nsec = 0;
  46. if (!nanosleep(&req, &rem))
  47. return 0;
  48. return rem.tv_sec + (rem.tv_nsec ? 1 : 0);
  49. }
  50. enum {
  51. PRIO_PROCESS = 0,
  52. };
  53. static inline int setpriority(__maybe_unused int which, __maybe_unused int who, __maybe_unused int prio)
  54. {
  55. /* FIXME - actually do something */
  56. return 0;
  57. }
  58. typedef unsigned long int ulong;
  59. typedef unsigned short int ushort;
  60. typedef unsigned int uint;
  61. #ifndef __SUSECONDS_T_TYPE
  62. typedef long suseconds_t;
  63. #endif
  64. #ifdef HAVE_LIBWINPTHREAD
  65. #define PTH(thr) ((thr)->pth)
  66. #else
  67. #define PTH(thr) ((thr)->pth.p)
  68. #endif
  69. #else
  70. #define PTH(thr) ((thr)->pth)
  71. #endif /* WIN32 */
  72. #endif /* __COMPAT_H__ */