updates.
[silc.git] / lib / silcutil / unix / silcunixthread.c
index 9cd68c3ba276532f774b78adb6bef5ef9b4cdcda..575c54a894a8b8d4f09210b11d8c0ed9cc0d0df9 100644 (file)
 
 #include "silcincludes.h"
 
-#ifdef SILC_THREADS
-
 SilcThread silc_thread_create(SilcThreadStart start_func, void *context,
                              bool waitable)
 {
+#ifdef SILC_THREADS
   pthread_attr_t attr;
   pthread_t thread;
   int ret;
@@ -58,28 +57,41 @@ SilcThread silc_thread_create(SilcThreadStart start_func, void *context,
 
   pthread_attr_destroy(&attr);
 
-  SILC_LOG_DEBUG(("Created thread %p", (SilcThread)ret));
+  SILC_LOG_DEBUG(("Created thread %p", (SilcThread)thread));
 
-  return (SilcThread)ret;
+  return (SilcThread)thread;
+#else
+  /* Call thread callback immediately */
+  (*start_func)(context);
+  return NULL;
+#endif
 }
 
 void silc_thread_exit(void *exit_value)
 {
+#ifdef SILC_THREADS
   pthread_exit(exit_value);
+#endif
 }
 
 SilcThread silc_thread_self(void)
 {
+#ifdef SILC_THREADS
   pthread_t self = pthread_self();
   return (SilcThread)self;
+#else
+  return NULL;
+#endif
 }
 
 bool silc_thread_wait(SilcThread thread, void **exit_value)
 {
+#ifdef SILC_THREADS
   SILC_LOG_DEBUG(("Waiting for thread %p", thread));
   if (!pthread_join(*(pthread_t *)thread, exit_value))
     return TRUE;
   return FALSE;
+#else
+  return FALSE;
+#endif
 }
-
-#endif /* SILC_THREADS */