summaryrefslogtreecommitdiff
path: root/nuttx/sched/pthread_detach.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_detach.c')
-rw-r--r--nuttx/sched/pthread_detach.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/nuttx/sched/pthread_detach.c b/nuttx/sched/pthread_detach.c
index 52ea63ca5..a959d94b3 100644
--- a/nuttx/sched/pthread_detach.c
+++ b/nuttx/sched/pthread_detach.c
@@ -2,7 +2,7 @@
* sched/pthread_detach.c
*
* Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -73,11 +73,11 @@
************************************************************************/
/************************************************************************
- * Function: pthread_detach
+ * Name: pthread_detach
*
* Description:
- * A thread object may be "detached" to specify that the return
- * value and completion status will not be requested.
+ * A thread object may be "detached" to specify that the return value
+ * and completion status will not be requested.
*
* Parameters:
* thread
@@ -129,6 +129,7 @@ int pthread_detach(pthread_t thread)
ret = OK;
}
+
(void)pthread_givesemaphore(&g_join_semaphore);
sdbg("Returning %d\n", ret);