summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libcsupport
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-18 17:25:35 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-18 17:25:35 +0000
commit4955afcca5385c2e542d8ce539a9e05410e082b3 (patch)
tree5019ee9dc6f918fed1768df3cb7bec9e0b768bf0 /c/src/exec/libcsupport
parentChanged to account for libio's maximum_semaphores as well as its (diff)
downloadrtems-4955afcca5385c2e542d8ce539a9e05410e082b3.tar.bz2
rtems_libio_number_iops is now defined in confdefs.h so the maximum
file descriptors is user configurable.
Diffstat (limited to 'c/src/exec/libcsupport')
-rw-r--r--c/src/exec/libcsupport/src/libio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/libcsupport/src/libio.c b/c/src/exec/libcsupport/src/libio.c
index cdb89e22de..12682c1190 100644
--- a/c/src/exec/libcsupport/src/libio.c
+++ b/c/src/exec/libcsupport/src/libio.c
@@ -37,7 +37,7 @@ Objects_Id rtems_libio_semaphore;
#define RTEMS_LIBIO_SEM rtems_build_name('L', 'B', 'I', 'O')
#define RTEMS_LIBIO_IOP_SEM(n) rtems_build_name('L', 'B', 'I', n)
-unsigned32 rtems_libio_number_iops;
+extern unsigned32 rtems_libio_number_iops;
rtems_libio_t *rtems_libio_iops;
rtems_libio_t *rtems_libio_last_iop;