version 1.43, 2011/11/26 10:01:26
|
version 1.49, 2012/05/21 17:25:41
|
Line 1
|
Line 1
|
/* |
/* |
================================================================================ |
================================================================================ |
RPL/2 (R) version 4.1.5 |
RPL/2 (R) version 4.1.9 |
Copyright (C) 1989-2011 Dr. BERTRAND Joël |
Copyright (C) 1989-2012 Dr. BERTRAND Joël |
|
|
This file is part of RPL/2. |
This file is part of RPL/2. |
|
|
Line 2993 formateur(struct_processus *s_etat_proce
|
Line 2993 formateur(struct_processus *s_etat_proce
|
} |
} |
else if ((*s_objet).type == MTX) |
else if ((*s_objet).type == MTX) |
{ |
{ |
if (alsprintf(&chaine, "Mutex $ %016lX", (unsigned long) |
if (alsprintf(&chaine, "Mutex $ %016lX owned by $ %016lX", |
&((*((struct_mutex *) (*s_objet).objet)).mutex)) < 0) |
(unsigned long) &((*((struct_mutex *) (*s_objet).objet)).mutex), |
|
(unsigned long) (*((struct_mutex *) (*s_objet).objet)).tid) < 0) |
{ |
{ |
(*s_etat_processus).erreur_systeme = d_es_allocation_memoire; |
(*s_etat_processus).erreur_systeme = d_es_allocation_memoire; |
return(NULL); |
return(NULL); |