diff --git a/c/src/exec/libcsupport/src/error.c b/c/src/exec/libcsupport/src/error.c index dd32fb8b66..339f8eb374 100644 --- a/c/src/exec/libcsupport/src/error.c +++ b/c/src/exec/libcsupport/src/error.c @@ -89,6 +89,7 @@ rtems_assoc_t rtems_status_assoc[] = { { "directive not implemented", RTEMS_NOT_IMPLEMENTED, }, { "RTEMS inconsistency detected", RTEMS_INTERNAL_ERROR, }, { "could not get enough memory", RTEMS_NO_MEMORY, }, + { "driver IO error", RTEMS_IO_ERROR, }, { "internal multiprocessing only", THREAD_STATUS_PROXY_BLOCKING, }, { 0, 0, 0 }, }; diff --git a/c/src/lib/libc/error.c b/c/src/lib/libc/error.c index dd32fb8b66..339f8eb374 100644 --- a/c/src/lib/libc/error.c +++ b/c/src/lib/libc/error.c @@ -89,6 +89,7 @@ rtems_assoc_t rtems_status_assoc[] = { { "directive not implemented", RTEMS_NOT_IMPLEMENTED, }, { "RTEMS inconsistency detected", RTEMS_INTERNAL_ERROR, }, { "could not get enough memory", RTEMS_NO_MEMORY, }, + { "driver IO error", RTEMS_IO_ERROR, }, { "internal multiprocessing only", THREAD_STATUS_PROXY_BLOCKING, }, { 0, 0, 0 }, }; diff --git a/cpukit/libcsupport/src/error.c b/cpukit/libcsupport/src/error.c index dd32fb8b66..339f8eb374 100644 --- a/cpukit/libcsupport/src/error.c +++ b/cpukit/libcsupport/src/error.c @@ -89,6 +89,7 @@ rtems_assoc_t rtems_status_assoc[] = { { "directive not implemented", RTEMS_NOT_IMPLEMENTED, }, { "RTEMS inconsistency detected", RTEMS_INTERNAL_ERROR, }, { "could not get enough memory", RTEMS_NO_MEMORY, }, + { "driver IO error", RTEMS_IO_ERROR, }, { "internal multiprocessing only", THREAD_STATUS_PROXY_BLOCKING, }, { 0, 0, 0 }, };