X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dff9e15c44ab6340d27215957c56fa72fad246a2..12a3d01e7de3d8fdefa0aeedeb0cee96936567f0:/src/xbt/xbt_sg_stubs.c diff --git a/src/xbt/xbt_sg_stubs.c b/src/xbt/xbt_sg_stubs.c index 7feeeece18..56a9bbe117 100644 --- a/src/xbt/xbt_sg_stubs.c +++ b/src/xbt/xbt_sg_stubs.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* xbt_sg_stubs -- empty functions sometimes used in SG (never in RL) */ /* This is always part of SG, never of RL. Content: */ @@ -11,8 +9,8 @@ /* In RL, java is useless, and threads are always part of the picture, */ /* ucontext never */ -/* Copyright (c) 2007 Martin Quinson. */ -/* All rights reserved. */ +/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -23,17 +21,18 @@ #include "portable.h" /* CONTEXT_THREADS */ #ifndef CONTEXT_THREADS +#ifndef WIN32 /* xbt_threads is loaded in libsimgrid when they are used to implement the xbt_context. * The decision (and the loading) is made in xbt/context.c. */ /* Mod_init/exit mecanism */ -void xbt_os_thread_mod_init(void) +void xbt_os_thread_mod_preinit(void) { } -void xbt_os_thread_mod_exit(void) +void xbt_os_thread_mod_postexit(void) { } @@ -73,30 +72,39 @@ void xbt_os_thread_yield(void) xbt_os_mutex_t xbt_os_mutex_init(void) { + /* xbt_backtrace_display_current(); xbt_die ("No pthread in SG when compiled against the ucontext (xbt_os_mutex_init)"); + */ + return NULL; } void xbt_os_mutex_acquire(xbt_os_mutex_t mutex) { + /* xbt_backtrace_display_current(); xbt_die ("No pthread in SG when compiled against the ucontext (xbt_os_mutex_acquire)"); + */ } void xbt_os_mutex_release(xbt_os_mutex_t mutex) { + /* xbt_backtrace_display_current(); xbt_die ("No pthread in SG when compiled against the ucontext (xbt_os_mutex_release)"); + */ } void xbt_os_mutex_destroy(xbt_os_mutex_t mutex) { + /* xbt_backtrace_display_current(); xbt_die ("No pthread in SG when compiled against the ucontext (xbt_os_mutex_destroy)"); + */ } xbt_os_cond_t xbt_os_cond_init(void) @@ -134,11 +142,4 @@ void xbt_os_cond_destroy(xbt_os_cond_t cond) ("No pthread in SG when compiled against the ucontext (xbt_os_cond_destroy)"); } #endif - - -#ifndef HAVE_JAVA -#include "xbt/xbt_context_private.h" -void xbt_ctx_java_factory_init(xbt_context_factory_t * factory) -{ -} #endif