summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-03-14 16:24:00 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-03-14 16:24:00 +0000
commit78d1190528525ef789800c3ce1912fc20ff55324 (patch)
tree14b3472c902ce8554cc35b2a47f4b4c39ce9b279 /cpukit/libfs
parent2011-03-14 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-78d1190528525ef789800c3ce1912fc20ff55324.tar.bz2
2011-03-14 Joel Sherrill <joel.sherrill@oarcorp.com>
* libfs/src/imfs/deviceerrno.c: Add RTEMS_INVALID_CLOCK, RTEMS_INVALID_NODE, and RTEMS_NOT_CONFIGURED.
Diffstat (limited to 'cpukit/libfs')
-rw-r--r--cpukit/libfs/src/imfs/deviceerrno.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpukit/libfs/src/imfs/deviceerrno.c b/cpukit/libfs/src/imfs/deviceerrno.c
index b0daf4d8f8..396df7619d 100644
--- a/cpukit/libfs/src/imfs/deviceerrno.c
+++ b/cpukit/libfs/src/imfs/deviceerrno.c
@@ -44,6 +44,9 @@ static const int status_code_to_errno [RTEMS_STATUS_CODES_LAST + 1] = {
[RTEMS_ILLEGAL_ON_REMOTE_OBJECT] = EIO,
[RTEMS_CALLED_FROM_ISR] = EIO,
[RTEMS_INVALID_PRIORITY] = EIO,
+ [RTEMS_INVALID_CLOCK] = EINVAL,
+ [RTEMS_INVALID_NODE] = EINVAL,
+ [RTEMS_NOT_CONFIGURED] = ENOSYS,
[RTEMS_NOT_OWNER_OF_RESOURCE] = EPERM,
[RTEMS_NOT_IMPLEMENTED] = ENOSYS,
[RTEMS_INTERNAL_ERROR] = EIO,