process_shared/ext/libpsem/mutex.h

15 lines
182 B
C
Raw Normal View History

2011-12-12 03:39:55 +00:00
#ifndef __MUTEX_H__
#define __MUTEX_H__
#include "bsem.h"
struct mutex {
bsem_t *bsem;
};
typedef struct mutex mutex_t;
extern size_t sizeof_mutex_t;
#endif /* __MUTEX_H__ */