From d89c29abdfeb88a50767834002b1f952d1139213 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 13 May 2015 14:47:46 -0600 Subject: [PATCH] Update ChangeLog --- ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 5178ca17b61..7944d079fe5 100755 --- a/ChangeLog +++ b/ChangeLog @@ -10376,3 +10376,9 @@ to avoid compilation errors. From Max Neklyudov (2015-05-13). * /net/route/netdev_router.c: Fix bug in IPv6 router from Max Neklyudov (2015-05-13). + * sched/pthread/pthread_kill.c: Re-implemened pthread_kill(). It was + just a simple wrapper around kill() but since the correct dispatching + of singles for multi-threaded task groups has been implemented, + calling kill() does not do what pthread_kill() is supposed to do. The + corrected implementation of pthread_kill() will direct the signal + specifically to the specific pthread and no other (2015-05-13).