Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 78 → Rev 79

/shark/trunk/include/kernel/int_sem.h
21,11 → 21,11
 
/**
------------
CVS : $Id: int_sem.h,v 1.2 2002-11-11 08:36:01 pj Exp $
CVS : $Id: int_sem.h,v 1.3 2003-03-13 13:36:28 pj Exp $
 
File: $File$
Revision: $Revision: 1.2 $
Last update: $Date: 2002-11-11 08:36:01 $
Revision: $Revision: 1.3 $
Last update: $Date: 2003-03-13 13:36:28 $
------------
 
Internal semaphores.
64,7 → 64,10
 
#include <kernel/types.h>
#include <kernel/iqueue.h>
#include "ll/sys/cdefs.h"
 
__BEGIN_DECLS
 
/* this is the structure normally pointed by the opt field in the
mutex_t structure */
typedef struct {
88,4 → 91,5
/* getvalue (>= 0 if there is noone blocked on it, -1 otherwise) */
int internal_sem_getvalue(internal_sem_t *s);
 
__END_DECLS
#endif