Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 501 → Rev 502

/shark/trunk/kernel/mutex.c
18,11 → 18,11
 
/**
------------
CVS : $Id: mutex.c,v 1.5 2004-01-08 20:14:08 giacomo Exp $
CVS : $Id: mutex.c,v 1.6 2004-03-10 14:51:42 giacomo Exp $
 
File: $File$
Revision: $Revision: 1.5 $
Last update: $Date: 2004-01-08 20:14:08 $
Revision: $Revision: 1.6 $
Last update: $Date: 2004-03-10 14:51:42 $
------------
 
This file contains the mutex and condition variables handling functions.
138,7 → 138,7
if (mutex->mutexlevel == -1)
return (EINVAL);
 
TRACER_LOGEVENT(FTrace_EVT_set_mutex_lock,3,proc_table[exec_shadow].context,(int)(mutex));
TRACER_LOGEVENT(FTrace_EVT_set_mutex_lock,(unsigned short int)proc_table[exec_shadow].context,(unsigned int)(mutex));
 
m = (mutex_resource_des *)resource_table[mutex->mutexlevel];
 
164,7 → 164,7
if (mutex->mutexlevel == -1)
return (EINVAL);
 
TRACER_LOGEVENT(FTrace_EVT_set_mutex_unlock,3,proc_table[exec_shadow].context,(int)(mutex));
TRACER_LOGEVENT(FTrace_EVT_set_mutex_unlock,(unsigned short int)proc_table[exec_shadow].context,(unsigned int)(mutex));
 
m = (mutex_resource_des *)resource_table[mutex->mutexlevel];