fixed - philips TVs ignore 'image view on' right after they were sent into standby...
[deb_libcec.git] / src / lib / platform / posix / os-threads.h
index 8b56731adfa2918f2a290e71dd4acc62ce2b7709..e5f935cf64ac9d24ff0c7637b53725755671c417 100644 (file)
@@ -64,9 +64,10 @@ namespace PLATFORM
   }
 
   typedef pthread_t thread_t;
+  #define INVALID_THREAD_VALUE 0
 
   #define ThreadsCreate(thread, func, arg)         (pthread_create(&thread, NULL, (void *(*) (void *))func, (void *)arg) == 0)
-  #define ThreadsWait(thread, retval)              (pthread_join(thread, retval) == 0)
+  #define ThreadsWait(thread, retval)              (thread ? pthread_join(thread, retval) == 0 : true)
 
   typedef pthread_mutex_t mutex_t;
   #define MutexCreate(mutex)                       pthread_mutex_init(&mutex, GetRecursiveMutexAttribute());