summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-08-28 13:57:29 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-08-28 13:57:29 +0000
commitb47be20cf5bea51d48fe08d25eba6980f0c3967c (patch)
tree5da57de7283ce5521ecd23e2332ee33d09ba0b1d
parentCorrected reference to LIBC_LIBM to work on all targets. (diff)
downloadrtems-b47be20cf5bea51d48fe08d25eba6980f0c3967c.tar.bz2
Added IO_Error status code and fixed No_Memory error number.
-rw-r--r--c/src/ada/rtems.ads8
-rw-r--r--cpukit/ada/rtems.ads8
2 files changed, 10 insertions, 6 deletions
diff --git a/c/src/ada/rtems.ads b/c/src/ada/rtems.ads
index 529ae83e4c..8feba8934e 100644
--- a/c/src/ada/rtems.ads
+++ b/c/src/ada/rtems.ads
@@ -413,8 +413,9 @@ package RTEMS is
Not_Owner_Of_Resource, -- not owner of resource
Not_Implemented, -- directive not implemented
Internal_Error, -- RTEMS inconsistency detected
+ No_Memory, -- no memory left in heap
+ IO_Error, -- driver IO error
Proxy_Blocking, -- internal multiprocessing only
- No_Memory -- no memory left in heap
);
for Status_Codes'Size use 32;
@@ -446,8 +447,9 @@ package RTEMS is
Not_Owner_Of_Resource => 23,
Not_ImplementeD => 24,
Internal_Error => 25,
- Proxy_Blocking => 26,
- No_Memory => 27
+ No_Memory => 26,
+ IO_Error => 27,
+ Proxy_Blocking => 28
);
--
diff --git a/cpukit/ada/rtems.ads b/cpukit/ada/rtems.ads
index 529ae83e4c..8feba8934e 100644
--- a/cpukit/ada/rtems.ads
+++ b/cpukit/ada/rtems.ads
@@ -413,8 +413,9 @@ package RTEMS is
Not_Owner_Of_Resource, -- not owner of resource
Not_Implemented, -- directive not implemented
Internal_Error, -- RTEMS inconsistency detected
+ No_Memory, -- no memory left in heap
+ IO_Error, -- driver IO error
Proxy_Blocking, -- internal multiprocessing only
- No_Memory -- no memory left in heap
);
for Status_Codes'Size use 32;
@@ -446,8 +447,9 @@ package RTEMS is
Not_Owner_Of_Resource => 23,
Not_ImplementeD => 24,
Internal_Error => 25,
- Proxy_Blocking => 26,
- No_Memory => 27
+ No_Memory => 26,
+ IO_Error => 27,
+ Proxy_Blocking => 28
);
--