From 222a76c37c89ee37eebecd53dd32fd481245e6fa Mon Sep 17 00:00:00 2001 From: rpj Date: Thu, 25 Oct 2001 13:24:58 +0000 Subject: * barrier.c: Move _LONG and _LPLONG defines into implement.h; rename to PTW32_INTERLOCKED_LONG and PTW32_INTERLOCKED_LPLONG respectively. * spin.c: Likewise; ptw32_interlocked_compare_exchange used in place of InterlockedCompareExchange directly. * global.c (ptw32_interlocked_compare_exchange): Add prototype for this new routine pointer to be used when InterlockedCompareExchange isn't supported by Windows. * nonportable.c (pthread_win32_process_attach_np): Check for support of InterlockedCompareExchange in kernel32 and assign its address to ptw32_interlocked_compare_exchange if it exists, or our own ix86 specific implementation ptw32_InterlockedCompareExchange. *private.c (ptw32_InterlockedCompareExchange): An implementation of InterlockedCompareExchange() which is specific to ix86; written directly in assembler for either MSVC or GNU C; needed because Windows 95 doesn't support InterlockedCompareExchange(). * sched.c (sched_get_priority_min): Extend to return THREAD_PRIORITY_IDLE. (sched_get_priority_max): Extend to return THREAD_PRIORITY_CRITICAL. --- Nmakefile.tests | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Nmakefile.tests') diff --git a/Nmakefile.tests b/Nmakefile.tests index 109a995..a99b1db 100644 --- a/Nmakefile.tests +++ b/Nmakefile.tests @@ -95,6 +95,7 @@ benchtest1:: benchtest1.c benchtest2:: benchtest2.c benchtest3:: benchtest3.c benchtest4:: benchtest4.c +benchtest5:: benchtest5.c loadfree: :test: mutex1 :test: loadfree @@ -161,6 +162,7 @@ benchtest1 :test: mutex3 benchtest2 :test: benchtest1 benchtest3 :test: benchtest2 benchtest4 :test: benchtest3 +benchtest5 :test: benchtest4 exception1 :test: cancel4 exception2 :test: exception1 exception3 :test: exception2 -- cgit v1.2.3