diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2017-02-11 22:48:13 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2017-02-11 22:48:13 +0100 |
commit | 3a7b699cba3d43a95322d6d423cc7ce9adee0eea (patch) | |
tree | b687470ac5f996cc47d2b933bd686b36d07c60ac /testing/tvheadend-git/0001-replace-pthread_yield-with-POSIX-sched_yield.patch | |
parent | 20ed2d225d6a44d92fc17141f3178614134d09b5 (diff) | |
download | aports-3a7b699cba3d43a95322d6d423cc7ce9adee0eea.tar.bz2 aports-3a7b699cba3d43a95322d6d423cc7ce9adee0eea.tar.xz |
testing/tvheadend: update to latest git snapshot
Diffstat (limited to 'testing/tvheadend-git/0001-replace-pthread_yield-with-POSIX-sched_yield.patch')
-rw-r--r-- | testing/tvheadend-git/0001-replace-pthread_yield-with-POSIX-sched_yield.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/testing/tvheadend-git/0001-replace-pthread_yield-with-POSIX-sched_yield.patch b/testing/tvheadend-git/0001-replace-pthread_yield-with-POSIX-sched_yield.patch deleted file mode 100644 index d57a5f7e4e..0000000000 --- a/testing/tvheadend-git/0001-replace-pthread_yield-with-POSIX-sched_yield.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 54df37222a72233b471fa44ee8d2beaff0d2dfd8 Mon Sep 17 00:00:00 2001 -From: Carlo Landmeter <clandmeter@gmail.com> -Date: Fri, 13 May 2016 00:24:14 +0200 -Subject: [PATCH] replace pthread_yield with POSIX sched_yield - -See: http://linux.die.net/man/3/pthread_yield ---- - src/api/api_idnode.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/api/api_idnode.c b/src/api/api_idnode.c -index fa9edb3..eb41646 100644 ---- a/src/api/api_idnode.c -+++ b/src/api/api_idnode.c -@@ -651,7 +651,7 @@ api_idnode_handler - } - pthread_mutex_unlock(&global_lock); - if (destroyed) -- pthread_yield(); /* delete penalty */ -+ sched_yield(); /* delete penalty */ - } - htsmsg_destroy(msg); - --- -2.8.2 - |