summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libcsupport
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-17 21:59:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-17 21:59:28 +0000
commitd6c20ff3733a781a34fc26c42fe5f41df9aada52 (patch)
tree490714fe9e44ba59679e95cae54c996175901775 /c/src/exec/libcsupport
parent2001-08-16 Mike Siers <mikes@poliac.com> (diff)
downloadrtems-d6c20ff3733a781a34fc26c42fe5f41df9aada52.tar.bz2
2001-08-17 Joel Sherrill <joel@OARcorp.com>
* 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.
Diffstat (limited to 'c/src/exec/libcsupport')
-rw-r--r--c/src/exec/libcsupport/include/rtems/libio_.h8
-rw-r--r--c/src/exec/libcsupport/src/unixlibc.c17
2 files changed, 25 insertions, 0 deletions
diff --git a/c/src/exec/libcsupport/include/rtems/libio_.h b/c/src/exec/libcsupport/include/rtems/libio_.h
index 027ce7d2c3..7e0f6df71e 100644
--- a/c/src/exec/libcsupport/include/rtems/libio_.h
+++ b/c/src/exec/libcsupport/include/rtems/libio_.h
@@ -211,6 +211,14 @@ extern rtems_libio_t *rtems_libio_iop_freelist;
/*
* External structures
*/
+#if !defined(LOGIN_NAME_MAX)
+#if defined(__linux__)
+#define LOGIN_NAME_MAX _POSIX_LOGIN_NAME_MAX
+#else
+#error "don't know how to set LOGIN_NAME_MAX"
+#endif
+#endif
+
typedef struct {
rtems_id task_id;
rtems_filesystem_location_info_t current_directory;
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.h>
+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)