summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/getppid.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/getppid.c')
-rw-r--r--cpukit/libcsupport/src/getppid.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/getppid.c b/cpukit/libcsupport/src/getppid.c
index 0341356a1f..b0269d4aea 100644
--- a/cpukit/libcsupport/src/getppid.c
+++ b/cpukit/libcsupport/src/getppid.c
@@ -1,3 +1,10 @@
+/**
+ * @file
+ *
+ * @brief Get Process and Parent Process IDs
+ * @ingroup libcsupport
+ */
+
#if HAVE_CONFIG_H
#include "config.h"
#endif
@@ -10,10 +17,9 @@
pid_t _POSIX_types_Ppid = 0;
-/*
+/**
* 4.1.1 Get Process and Parent Process IDs, P1003.1b-1993, p. 83
*/
-
pid_t getppid( void )
{
return _POSIX_types_Ppid;