2007-11-03 13:43:05 +00:00
|
|
|
/* This software was written by Dirk Engling <erdgeist@erdgeist.org>
|
|
|
|
It is considered beerware. Prost. Skol. Cheers or whatever. */
|
|
|
|
|
2007-11-06 11:58:32 +00:00
|
|
|
#ifndef __OT_MUTEX_H__
|
|
|
|
#define __OT_MUTEX_H__
|
2007-11-03 13:43:05 +00:00
|
|
|
|
|
|
|
void mutex_init( );
|
|
|
|
void mutex_deinit( );
|
|
|
|
|
2007-11-06 11:58:32 +00:00
|
|
|
ot_vector *mutex_bucket_lock( int bucket );
|
|
|
|
ot_vector *mutex_bucket_lock_by_hash( ot_hash *hash );
|
|
|
|
|
2007-11-03 13:43:05 +00:00
|
|
|
void mutex_bucket_unlock( int bucket );
|
2007-11-06 11:58:32 +00:00
|
|
|
void mutex_bucket_unlock_by_hash( ot_hash *hash );
|
2007-11-03 13:43:05 +00:00
|
|
|
|
|
|
|
#endif
|