summaryrefslogtreecommitdiff
path: root/databases/firebird20-server/files/patch-jrd::thd.c
blob: a09c3fe4e1c3c585516a2b71af772e48b78ab15d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- jrd/thd.c.orig	Thu May 24 14:11:11 2001
+++ jrd/thd.c	Sun Jul  7 14:52:07 2002
@@ -2605,7 +2605,7 @@
 int 		detach_state=PTHREAD_CREATE_DETACHED
 #endif
 
-#if ( !defined HP10 && !defined linux )
+#if ( !defined HP10 && !defined linux && !defined FREEBSD )
 
 state = pthread_attr_init (&pattr);
 if (state)
@@ -2628,7 +2628,7 @@
 return state;
 
 #else
-#ifdef linux
+#if ( defined linux || defined FREEBSD )
 if (state = pthread_create (&thread, NULL, routine, arg))
     return state;
 return pthread_detach (thread);