summaryrefslogtreecommitdiff
path: root/net/asterisk11/files/patch-main::utils.c
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2014-07-29 17:12:47 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2014-07-29 17:12:47 +0000
commit08a006d08a4c35d2c3ecc9a3d10cf7fd14661a84 (patch)
tree0cfc4f0736babb895eb97a65c6defe632a0249c7 /net/asterisk11/files/patch-main::utils.c
parenteditors/fte: update to 20110708 (diff)
Rename all patches that contain '::' as a path separator, and use
'__' instead.
Notes
Notes: svn path=/head/; revision=363362
Diffstat (limited to 'net/asterisk11/files/patch-main::utils.c')
-rw-r--r--net/asterisk11/files/patch-main::utils.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/net/asterisk11/files/patch-main::utils.c b/net/asterisk11/files/patch-main::utils.c
deleted file mode 100644
index 8b6e268d1cb9..000000000000
--- a/net/asterisk11/files/patch-main::utils.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- ./main/utils.c.orig 2010-08-06 20:57:10.000000000 +0200
-+++ ./main/utils.c 2010-11-06 14:54:37.000000000 +0100
-@@ -990,8 +990,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.