summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/__getpid.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/__getpid.c')
-rw-r--r--cpukit/libcsupport/src/__getpid.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/cpukit/libcsupport/src/__getpid.c b/cpukit/libcsupport/src/__getpid.c
index 932a4f170a..96e1a3f813 100644
--- a/cpukit/libcsupport/src/__getpid.c
+++ b/cpukit/libcsupport/src/__getpid.c
@@ -1,6 +1,8 @@
-/*
- * Some C Libraries reference this routine since they think getpid is
- * a real system call.
+/**
+ * @file
+ *
+ * @brief Get Process Id
+ * @ingroup libcsupport
*/
#if HAVE_CONFIG_H
@@ -9,6 +11,10 @@
#include <unistd.h>
+/**
+ * Some C Libraries reference this routine since they think getpid is
+ * a real system call.
+ */
pid_t __getpid(void)
{
return getpid();