summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-02-24 09:54:44 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-03-13 12:23:45 +0100
commita76c23738b14b1933d099e52cf1f907997993533 (patch)
treec44423fab3cb1e23d1e2aff5577893596a8b9826
parentFilesystem: New function (diff)
downloadrtems-a76c23738b14b1933d099e52cf1f907997993533.tar.bz2
Filesystem: Change error indication
Change error indication to ESPIPE in rtems_filesystem_default_lseek().
-rw-r--r--cpukit/libcsupport/include/rtems/libio.h2
-rw-r--r--cpukit/libfs/src/defaults/default_lseek.c10
2 files changed, 7 insertions, 5 deletions
diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h
index e17a4380f4..f883d66b40 100644
--- a/cpukit/libcsupport/include/rtems/libio.h
+++ b/cpukit/libcsupport/include/rtems/libio.h
@@ -1014,7 +1014,7 @@ int rtems_filesystem_default_ioctl(
);
/**
- * @retval -1 Always. The errno is set to ENOTSUP.
+ * @retval -1 Always. The errno is set to ESPIPE.
*
* @see rtems_filesystem_lseek_t.
*/
diff --git a/cpukit/libfs/src/defaults/default_lseek.c b/cpukit/libfs/src/defaults/default_lseek.c
index 09a691eb61..02bd369839 100644
--- a/cpukit/libfs/src/defaults/default_lseek.c
+++ b/cpukit/libfs/src/defaults/default_lseek.c
@@ -9,15 +9,17 @@
* $Id$
*/
-#include <rtems/libio.h>
+#if HAVE_CONFIG_H
+ #include "config.h"
+#endif
+
#include <rtems/libio_.h>
-#include <rtems/seterr.h>
off_t rtems_filesystem_default_lseek(
rtems_libio_t *iop,
- off_t length,
+ off_t offset,
int whence
)
{
- rtems_set_errno_and_return_minus_one( ENOTSUP );
+ rtems_set_errno_and_return_minus_one( ESPIPE );
}