kern

view src/mutex.h @ 86:379332fc1667

implementing ata read/write
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 07 Dec 2011 14:03:11 +0200
parents
children
line source
1 #ifndef MUTEX_H_
2 #define MUTEX_H_
4 typedef unsigned int mutex_t;
6 void mutex_lock(mutex_t *m);
7 void mutex_unlock(mutex_t *m);
9 int mutex_trylock(mutex_t *m);
11 #endif /* MUTEX_H_ */