diff options
author | rpj <rpj> | 2004-10-01 07:17:09 +0000 |
---|---|---|
committer | rpj <rpj> | 2004-10-01 07:17:09 +0000 |
commit | b0cf9efa6afeb8a7dbddf124dae173a2d633c801 (patch) | |
tree | 8f208f15bd63cf69ae9e2ceb2d523296db8bca76 /tests/benchtest.h | |
parent | 531ca4db4794aab863a898b4d079ccd59b424b25 (diff) |
Mutex speedups
Diffstat (limited to 'tests/benchtest.h')
-rw-r--r-- | tests/benchtest.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/benchtest.h b/tests/benchtest.h index 2401622..64af6c8 100644 --- a/tests/benchtest.h +++ b/tests/benchtest.h @@ -59,6 +59,9 @@ extern HINSTANCE ptw32_h_kernel32; #define PTW32_OBJECT_AUTO_INIT ((void *) -1) +void dummy_call(int * a); +void interlocked_inc_with_conditionals(int *a); +void interlocked_dec_with_conditionals(int *a); int old_mutex_init(old_mutex_t *mutex, const old_mutexattr_t *attr); int old_mutex_lock(old_mutex_t *mutex); int old_mutex_unlock(old_mutex_t *mutex); |