You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
373 B

  1. --- a/common/Thread.cpp
  2. +++ b/common/Thread.cpp
  3. @@ -16,6 +16,8 @@
  4. #endif
  5. #include "common/EventHandler.h"
  6. +#include <pthread.h>
  7. +
  8. namespace TelldusCore {
  9. class ThreadPrivate {
  10. --- a/service/Timer.cpp
  11. +++ b/service/Timer.cpp
  12. @@ -7,6 +7,7 @@
  13. #include "service/Timer.h"
  14. #ifdef _WINDOWS
  15. #else
  16. +#include <pthread.h>
  17. #include <sys/time.h>
  18. #include <errno.h>
  19. #endif