00001 /****************************************************************************** 00002 * $Id: threads.h,v 1.2 2003/12/07 18:14:22 gareuselesinge Exp $ 00003 * This file is part of liberopops (http://liberopops.sf.net) * 00004 * This file is distributed under the terms of GNU GPL license. * 00005 ******************************************************************************/ 00006 00007 00008 /******************************************************************************/ 00015 /******************************************************************************/ 00016 00017 00018 00019 #ifndef THREADS_H 00020 #define THREADS_H 00021 00022 #include <pthread.h> 00023 00025 void thread_init(int n); 00027 void thread_die(pthread_t t); 00029 void thread_clean(); 00031 void thread_get_free(pthread_t** t,pthread_attr_t** a); 00033 void thread_notborn(pthread_t *t); 00034 00035 00036 #endif
1.3.6-20040222