From 771465fed0cf50ee2dd790723245fc091699c324 Mon Sep 17 00:00:00 2001 From: rpj Date: Mon, 17 May 2004 01:38:02 +0000 Subject: re-indentation, bug fixes, hooks for pre-emptive async cancelation --- pthread_detach.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pthread_detach.c') diff --git a/pthread_detach.c b/pthread_detach.c index 1c8965f..a376cf2 100644 --- a/pthread_detach.c +++ b/pthread_detach.c @@ -77,7 +77,7 @@ pthread_detach (pthread_t thread) int result; /* This is the proper way to test for a valid thread. */ - result = pthread_kill(thread, 0); + result = pthread_kill (thread, 0); if (0 != result) { return result; -- cgit v1.2.3