From e1a9e5d7d26130e133b17da6c6e598c07dc6f33c Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 13 Jan 2012 11:30:03 +0100 Subject: [PATCH] The function is not implemented so put a THROW_UNIMPLEMENTED --- src/xbt/xbt_os_thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.20.1