From: unknown Date: Fri, 13 Jan 2012 10:30:03 +0000 (+0100) Subject: The function is not implemented so put a THROW_UNIMPLEMENTED X-Git-Tag: exp_20120216~137 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e1a9e5d7d26130e133b17da6c6e598c07dc6f33c The function is not implemented so put a THROW_UNIMPLEMENTED --- diff --git a/src/xbt/xbt_os_thread.c b/src/xbt/xbt_os_thread.c index 68198a879f..f34fb398e1 100644 --- a/src/xbt/xbt_os_thread.c +++ b/src/xbt/xbt_os_thread.c @@ -138,7 +138,7 @@ int xbt_os_thread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) { #ifdef WIN32 - return 0; //pthread_atfork is not implemented in pthread.h on windows + THROW_UNIMPLEMENTED; //pthread_atfork is not implemented in pthread.h on windows #else return pthread_atfork(prepare, parent, child); #endif