Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Let the stubs die more verbosely when they catch a logic error in our programmation
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 16 Mar 2007 10:48:16 +0000 (10:48 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 16 Mar 2007 10:48:16 +0000 (10:48 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3290 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/gras/sg_stubs.c

index 9b1544a..cf73c06 100644 (file)
@@ -28,56 +28,69 @@ void xbt_thread_mod_exit(void) {}
 /* Main functions */
 
 xbt_thread_t xbt_thread_create(pvoid_f_pvoid_t start_routine,void* param) {
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_thread_create)");
 }
 
 void xbt_thread_exit(int *retcode){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_thread_exit)");
 }
 
 xbt_thread_t xbt_thread_self(void){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_thread_self)");
 }
 
 void xbt_thread_yield(void){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_thread_yield)");
 }
 
 
 xbt_mutex_t xbt_mutex_init(void){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_mutex_init)");
 }
 
 void xbt_mutex_lock(xbt_mutex_t mutex){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_mutex_lock)");
 }
 
 void xbt_mutex_unlock(xbt_mutex_t mutex){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_mutex_unlock)");
 }
 
 void xbt_mutex_destroy(xbt_mutex_t mutex){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_mutex_destroy)");
 }
 
 xbt_thcond_t xbt_thcond_init(void){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_thcond_init)");
 }
 
 void xbt_thcond_wait(xbt_thcond_t cond, xbt_mutex_t mutex){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_thcond_wait)");
 }
 
 void xbt_thcond_signal(xbt_thcond_t cond){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_thcond_signal)");
 }
 
 void xbt_thcond_broadcast(xbt_thcond_t cond){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_thcond_broadcast)");
 }
 
 void xbt_thcond_destroy(xbt_thcond_t cond){
-   xbt_die("No pthread in SG when compiled against the ucontext");
+   xbt_backtrace_display();
+   xbt_die("No pthread in SG when compiled against the ucontext (xbt_thcond_destroy)");
 }