aboutsummaryrefslogblamecommitdiff
path: root/net/asterisk16/files/patch-main::utils.c
blob: 6ca00d412ed34ef0ffe2f377c5acd84a2793a65e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


         
                
                
                   




                                                                            
                                               



                                                                                        

$FreeBSD$

--- main/utils.c
+++ main/utils.c
@@ -936,8 +936,8 @@
 		pthread_attr_init(attr);
 	}
 
-#ifdef __linux__
-	/* On Linux, pthread_attr_init() defaults to PTHREAD_EXPLICIT_SCHED,
+#if defined(__linux__) || defined(__FreeBSD__)
+	/* On Linux and FreeBSD, pthread_attr_init() defaults to PTHREAD_EXPLICIT_SCHED,
 	   which is kind of useless. Change this here to
 	   PTHREAD_INHERIT_SCHED; that way the -p option to set realtime
 	   priority will propagate down to new threads by default.