summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-04 22:38:59 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-04 22:38:59 +0000
commit70121d6ca8fd0e48f35b3ccb52e3b960e64df6c2 (patch)
tree8f6f8829ea4e5a7f5bd1a48503aa7308bbf90e4e /nuttx/ChangeLog
parentf34406ac488b6d5fb2f50f026e1964fb33ae649d (diff)
downloadnuttx-70121d6ca8fd0e48f35b3ccb52e3b960e64df6c2.tar.gz
nuttx-70121d6ca8fd0e48f35b3ccb52e3b960e64df6c2.tar.bz2
nuttx-70121d6ca8fd0e48f35b3ccb52e3b960e64df6c2.zip
Bugfix: whenever a thread it must report the PID of the main task (even it is not the main task) with SIGCHLD
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5612 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 1ec62c208..980885b00 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -4130,4 +4130,9 @@
for pthreads. By dividing the TCB structure into these variants,
pthreads do not have to be burdened by task-specific data structures
(and vice versa).
+ * sched/task_exithook.c adn group_create.c: Fix an error, the
+ task within the task group may exit early leaving a pthread to
+ exit the task group last. In this case, we need to remember the
+ the PID of the main task in the task group and use that PID for
+ signalling SIGCHILD to the parent task group.