/* @(#) $Id: pthreads_op.c,v 1.5 2007/01/04 19:16:01 dcid Exp $ */ /* Copyright (C) 2005 Daniel B. Cid * All rights reserved. * * This program is a free software; you can redistribute it * and/or modify it under the terms of the GNU General Public * License (version 2) as published by the FSF - Free Software * Foundation */ #ifndef WIN32 #include "shared.h" #include /* CreateThread(void v0.1 * Creates a new thread and gives the argument passed to the function * Return 0 on success or -1 on error */ int CreateThread(void *function_pointer(void *data), void *data) { pthread_t lthread; int ret = 0; ret = pthread_create(<hread, NULL, function_pointer, (void*)data); if(ret != 0) { merror(THREAD_ERROR, __local_name); return (-1); } if(pthread_detach(lthread) != 0) { merror(THREAD_ERROR, __local_name); return(-1); } return(0); } #endif /* EOF */