From ca67e184cafb7c777811e62f430517e37e95d876 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christophe=20Thi=C3=A9ry?= Date: Tue, 15 Nov 2011 16:54:33 +0100 Subject: [PATCH] Remove a useless function. The default one does the same thing. --- src/simix/smx_context_sysv.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/simix/smx_context_sysv.c b/src/simix/smx_context_sysv.c index f46dbad9fa..8bcc0cf5a6 100644 --- a/src/simix/smx_context_sysv.c +++ b/src/simix/smx_context_sysv.c @@ -85,7 +85,6 @@ void SIMIX_ctx_sysv_factory_init(smx_context_factory_t *factory) (*factory)->stop = smx_ctx_sysv_stop_parallel; (*factory)->suspend = smx_ctx_sysv_suspend_parallel; (*factory)->runall = smx_ctx_sysv_runall_parallel; - (*factory)->self = smx_ctx_sysv_self_parallel; #else THROWF(arg_error, 0, "No thread support for parallel context execution"); #endif @@ -297,10 +296,3 @@ static void smx_ctx_sysv_runall_parallel(void) simix_global->process_to_run); #endif } - -smx_context_t smx_ctx_sysv_self_parallel(void) -{ - /*smx_context_t self_context = (smx_context_t) xbt_os_thread_get_extra_data(); - return self_context ? self_context : (smx_context_t) maestro_context;*/ - return SIMIX_context_get_current(); -} -- 2.20.1