From 7666afc97ab84f3d907cac9f7d083aa11354e56c Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 14 May 2012 16:53:49 +0200 Subject: Filesystem: Add const qualifier to lock/unlock --- cpukit/libcsupport/include/rtems/libio.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpukit/libcsupport/include/rtems/libio.h') diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h index b42ff93dec..44dd847ebb 100644 --- a/cpukit/libcsupport/include/rtems/libio.h +++ b/cpukit/libcsupport/include/rtems/libio.h @@ -69,7 +69,7 @@ typedef enum { * @see rtems_filesystem_default_lock(). */ typedef void (*rtems_filesystem_mt_entry_lock_t)( - rtems_filesystem_mount_table_entry_t *mt_entry + const rtems_filesystem_mount_table_entry_t *mt_entry ); /** @@ -80,7 +80,7 @@ typedef void (*rtems_filesystem_mt_entry_lock_t)( * @see rtems_filesystem_default_unlock(). */ typedef void (*rtems_filesystem_mt_entry_unlock_t)( - rtems_filesystem_mount_table_entry_t *mt_entry + const rtems_filesystem_mount_table_entry_t *mt_entry ); /** @@ -523,7 +523,7 @@ extern const rtems_filesystem_operations_table * @see rtems_filesystem_mt_entry_lock_t. */ void rtems_filesystem_default_lock( - rtems_filesystem_mount_table_entry_t *mt_entry + const rtems_filesystem_mount_table_entry_t *mt_entry ); /** @@ -532,7 +532,7 @@ void rtems_filesystem_default_lock( * @see rtems_filesystem_mt_entry_unlock_t. */ void rtems_filesystem_default_unlock( - rtems_filesystem_mount_table_entry_t *mt_entry + const rtems_filesystem_mount_table_entry_t *mt_entry ); /** -- cgit v1.2.3