summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
);
--