X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilcutil%2Fbeos%2Fsilcbeosthread.c;h=eb411412f6b0bd52ae0c0a7c2e74d3f21f4e85a9;hb=e7b6c157b80152bf9fb9266e6bdd93f9fb0db776;hp=48e7e7e931f92eb15370c18cbf578a8d507e42e1;hpb=09bae6acdf9a519c6d9b4e7535e7f7e56b6c24c1;p=silc.git diff --git a/lib/silcutil/beos/silcbeosthread.c b/lib/silcutil/beos/silcbeosthread.c index 48e7e7e9..eb411412 100644 --- a/lib/silcutil/beos/silcbeosthread.c +++ b/lib/silcutil/beos/silcbeosthread.c @@ -23,7 +23,7 @@ since the silc_thread_self() causes that BeOS and OS/2 is hard to do to support this SilcThread API */ -#include "silcincludes.h" +#include "silc.h" #ifdef SILC_THREADS @@ -32,7 +32,7 @@ typedef struct { thread_id thread; SilcThreadStart start_func; void *context; - bool waitable; + SilcBool waitable; } *SilcBeosThread; /* Actual routine that is called by BeOS when the thread is created. @@ -47,7 +47,7 @@ static void *silc_thread_beos_start(void *context) #endif SilcThread silc_thread_create(SilcThreadStart start_func, void *context, - bool waitable) + SilcBool waitable) { #ifdef SILC_THREADS int ret; @@ -93,7 +93,7 @@ SilcThread silc_thread_self(void) #endif } -bool silc_thread_wait(SilcThread thread, void **exit_value) +SilcBool silc_thread_wait(SilcThread thread, void **exit_value) { #ifdef SILC_THREADS status_t ret, retval;