#ifndef __C_THREAD__H #define __C_THREAD__H "$Id: c-threads.h,v 1.1 2007/07/05 20:12:43 hoesterholt Exp $" #define C_THREAD_STACK_SIZE 256 /* KB */ typedef void * t_c_thread_id; typedef int (*t_c_thread_func)(void *); /*********************************************************************************/ t_c_thread_id c_thread_create(t_c_thread_func f,void *data); int c_thread_join(t_c_thread_id id); /*********************************************************************************/ /* =head1 Info S> Hans Oesterholt (hansatelementalprogrammingdotorgextension).E S> (c) 2005.E S> L.E S> c-thread.h $Revision: 1.1 $ =cut */ #endif