summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/types.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-31 21:40:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-31 21:40:48 +0000
commitc238a2189d15121d62faa56982cbf17f22bd5b3e (patch)
tree9c097b85d04b69cc2e11d1549f1e2349f3cd1459 /c/src/exec/posix/src/types.c
parentfixed typo in merge of Eric Norum's patch (diff)
downloadrtems-c238a2189d15121d62faa56982cbf17f22bd5b3e.tar.bz2
added checks to validate values passed to set attribute routines
Diffstat (limited to '')
-rw-r--r--c/src/exec/posix/src/types.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/c/src/exec/posix/src/types.c b/c/src/exec/posix/src/types.c
index 194840305f..c1e1c8c708 100644
--- a/c/src/exec/posix/src/types.c
+++ b/c/src/exec/posix/src/types.c
@@ -5,6 +5,7 @@
#include <sys/types.h>
#include <rtems/system.h>
+#include <rtems/score/object.h>
/*PAGE
*
@@ -13,7 +14,7 @@
pid_t getpid( void )
{
- return POSIX_NOT_IMPLEMENTED();
+ return _Objects_Local_node;
}
/*PAGE