diff options
Diffstat (limited to 'mutex.h')
| -rw-r--r-- | mutex.h | 13 |
1 files changed, 13 insertions, 0 deletions
| @@ -0,0 +1,13 @@ | |||
| 1 | /* This software was written by Dirk Engling <erdgeist@erdgeist.org> | ||
| 2 | It is considered beerware. Prost. Skol. Cheers or whatever. */ | ||
| 3 | |||
| 4 | #ifndef __MUTEX_H__ | ||
| 5 | #define __MUTEX_H__ | ||
| 6 | |||
| 7 | void mutex_init( ); | ||
| 8 | void mutex_deinit( ); | ||
| 9 | |||
| 10 | void mutex_bucket_lock( int bucket ); | ||
| 11 | void mutex_bucket_unlock( int bucket ); | ||
| 12 | |||
| 13 | #endif | ||
