From d6c20ff3733a781a34fc26c42fe5f41df9aada52 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 17 Aug 2001 21:59:28 +0000 Subject: 2001-08-17 Joel Sherrill * include/rtems/libio_.h: Added ifdef to ensure that LOGIN_NAME_MAX is defined on GNU/Linux (RedHat 6.2 distribution). * libc/unixlibc.c: Added stubs for rtems_io_register_name() and rtems_io_lookup_name() so UNIX port would compile the IO manager sptest that registers /dev/null. --- c/src/exec/libcsupport/src/unixlibc.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'c/src/exec/libcsupport/src') diff --git a/c/src/exec/libcsupport/src/unixlibc.c b/c/src/exec/libcsupport/src/unixlibc.c index abc4526397..f0232ce5db 100644 --- a/c/src/exec/libcsupport/src/unixlibc.c +++ b/c/src/exec/libcsupport/src/unixlibc.c @@ -17,6 +17,23 @@ #include +rtems_status_code rtems_io_register_name( + char *device_name, + rtems_device_major_number major, + rtems_device_minor_number minor +) +{ + return 0; /* not supported */ +} + +rtems_status_code rtems_io_lookup_name( + const char *name, + rtems_driver_name_t **device_info +) +{ + return 0; /* not supported */ +} + #if defined(RTEMS_UNIXLIB) void libc_init(int reentrant) -- cgit v1.2.3