forked from Imagelibrary/rtems
Added IO_Error status code and fixed No_Memory error number.
This commit is contained in:
@@ -413,8 +413,9 @@ package RTEMS is
|
|||||||
Not_Owner_Of_Resource, -- not owner of resource
|
Not_Owner_Of_Resource, -- not owner of resource
|
||||||
Not_Implemented, -- directive not implemented
|
Not_Implemented, -- directive not implemented
|
||||||
Internal_Error, -- RTEMS inconsistency detected
|
Internal_Error, -- RTEMS inconsistency detected
|
||||||
|
No_Memory, -- no memory left in heap
|
||||||
|
IO_Error, -- driver IO error
|
||||||
Proxy_Blocking, -- internal multiprocessing only
|
Proxy_Blocking, -- internal multiprocessing only
|
||||||
No_Memory -- no memory left in heap
|
|
||||||
);
|
);
|
||||||
|
|
||||||
for Status_Codes'Size use 32;
|
for Status_Codes'Size use 32;
|
||||||
@@ -446,8 +447,9 @@ package RTEMS is
|
|||||||
Not_Owner_Of_Resource => 23,
|
Not_Owner_Of_Resource => 23,
|
||||||
Not_ImplementeD => 24,
|
Not_ImplementeD => 24,
|
||||||
Internal_Error => 25,
|
Internal_Error => 25,
|
||||||
Proxy_Blocking => 26,
|
No_Memory => 26,
|
||||||
No_Memory => 27
|
IO_Error => 27,
|
||||||
|
Proxy_Blocking => 28
|
||||||
);
|
);
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|||||||
@@ -413,8 +413,9 @@ package RTEMS is
|
|||||||
Not_Owner_Of_Resource, -- not owner of resource
|
Not_Owner_Of_Resource, -- not owner of resource
|
||||||
Not_Implemented, -- directive not implemented
|
Not_Implemented, -- directive not implemented
|
||||||
Internal_Error, -- RTEMS inconsistency detected
|
Internal_Error, -- RTEMS inconsistency detected
|
||||||
|
No_Memory, -- no memory left in heap
|
||||||
|
IO_Error, -- driver IO error
|
||||||
Proxy_Blocking, -- internal multiprocessing only
|
Proxy_Blocking, -- internal multiprocessing only
|
||||||
No_Memory -- no memory left in heap
|
|
||||||
);
|
);
|
||||||
|
|
||||||
for Status_Codes'Size use 32;
|
for Status_Codes'Size use 32;
|
||||||
@@ -446,8 +447,9 @@ package RTEMS is
|
|||||||
Not_Owner_Of_Resource => 23,
|
Not_Owner_Of_Resource => 23,
|
||||||
Not_ImplementeD => 24,
|
Not_ImplementeD => 24,
|
||||||
Internal_Error => 25,
|
Internal_Error => 25,
|
||||||
Proxy_Blocking => 26,
|
No_Memory => 26,
|
||||||
No_Memory => 27
|
IO_Error => 27,
|
||||||
|
Proxy_Blocking => 28
|
||||||
);
|
);
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|||||||
Reference in New Issue
Block a user