summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/__getpid.c
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2012-12-10 14:51:23 -0500
committerGedare Bloom <gedare@rtems.org>2012-12-10 14:51:23 -0500
commit37509959b261e28607ca9ae1ce247c0463b39f42 (patch)
treec428ff39cf29e9cc8ee04d9e271ccbd4543abb51 /cpukit/libcsupport/src/__getpid.c
parentlibcsupport: Doxygen enhancement task #2 (diff)
downloadrtems-37509959b261e28607ca9ae1ce247c0463b39f42.tar.bz2
libcsupport: Doxygen enhancement task #5
http://www.google-melange.com/gci/task/view/google/gci2012/7992211
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();