summaryrefslogtreecommitdiff
path: root/libtrivfs
diff options
context:
space:
mode:
Diffstat (limited to 'libtrivfs')
-rw-r--r--libtrivfs/file-access.c2
-rw-r--r--libtrivfs/file-get-fs-options.c2
-rw-r--r--libtrivfs/file-get-storage-info.c2
-rw-r--r--libtrivfs/file-reparent.c2
-rw-r--r--libtrivfs/fsys-forward.c2
-rw-r--r--libtrivfs/fsys-get-children.c2
-rw-r--r--libtrivfs/fsys-get-options.c2
-rw-r--r--libtrivfs/fsys-get-source.c2
-rw-r--r--libtrivfs/fsys-set-options.c2
-rw-r--r--libtrivfs/io-identity.c2
-rw-r--r--libtrivfs/io-modes-set.c2
11 files changed, 11 insertions, 11 deletions
diff --git a/libtrivfs/file-access.c b/libtrivfs/file-access.c
index f289a23b..4a65b7a7 100644
--- a/libtrivfs/file-access.c
+++ b/libtrivfs/file-access.c
@@ -18,7 +18,7 @@
#include "priv.h"
#include "trivfs_fs_S.h"
-error_t
+kern_return_t
trivfs_S_file_check_access (struct trivfs_protid *cred,
mach_port_t reply, mach_msg_type_name_t reply_type,
int *allowed)
diff --git a/libtrivfs/file-get-fs-options.c b/libtrivfs/file-get-fs-options.c
index e3e033e6..e344eaea 100644
--- a/libtrivfs/file-get-fs-options.c
+++ b/libtrivfs/file-get-fs-options.c
@@ -24,7 +24,7 @@
#include "priv.h"
#include "trivfs_fs_S.h"
-error_t
+kern_return_t
trivfs_S_file_get_fs_options (struct trivfs_protid *cred,
mach_port_t reply,
mach_msg_type_name_t reply_type,
diff --git a/libtrivfs/file-get-storage-info.c b/libtrivfs/file-get-storage-info.c
index a4a44bb2..6e96638a 100644
--- a/libtrivfs/file-get-storage-info.c
+++ b/libtrivfs/file-get-storage-info.c
@@ -18,7 +18,7 @@
#include "priv.h"
#include "trivfs_fs_S.h"
-error_t
+kern_return_t
trivfs_S_file_get_storage_info (struct trivfs_protid *cred,
mach_port_t reply,
mach_msg_type_name_t reply_type,
diff --git a/libtrivfs/file-reparent.c b/libtrivfs/file-reparent.c
index 5892013c..e52a8bb9 100644
--- a/libtrivfs/file-reparent.c
+++ b/libtrivfs/file-reparent.c
@@ -22,7 +22,7 @@
#include "trivfs_fs_S.h"
#include "trivfs_io_S.h"
-error_t
+kern_return_t
trivfs_S_file_reparent (struct trivfs_protid *cred,
mach_port_t reply, mach_msg_type_name_t reply_type,
mach_port_t parent,
diff --git a/libtrivfs/fsys-forward.c b/libtrivfs/fsys-forward.c
index a3be1849..f7b23674 100644
--- a/libtrivfs/fsys-forward.c
+++ b/libtrivfs/fsys-forward.c
@@ -28,7 +28,7 @@
the command line arguments. If the recipient accepts the request, he
(or some delegate) should send fsys_startup to REQUESTOR to start the
filesystem up. */
-error_t
+kern_return_t
trivfs_S_fsys_forward (mach_port_t server,
mach_port_t reply,
mach_msg_type_name_t replytype,
diff --git a/libtrivfs/fsys-get-children.c b/libtrivfs/fsys-get-children.c
index f0cd28c2..5e1d6c7a 100644
--- a/libtrivfs/fsys-get-children.c
+++ b/libtrivfs/fsys-get-children.c
@@ -27,7 +27,7 @@
or more links in the file system, therefore there is no guarantee
that a translators name refers to an existing link in the file
system. */
-error_t
+kern_return_t
trivfs_S_fsys_get_children (struct trivfs_control *fsys,
mach_port_t reply,
mach_msg_type_name_t replyPoly,
diff --git a/libtrivfs/fsys-get-options.c b/libtrivfs/fsys-get-options.c
index 37247035..3e3774b1 100644
--- a/libtrivfs/fsys-get-options.c
+++ b/libtrivfs/fsys-get-options.c
@@ -24,7 +24,7 @@
#include "priv.h"
#include "trivfs_fsys_S.h"
-error_t
+kern_return_t
trivfs_S_fsys_get_options (struct trivfs_control *fsys,
mach_port_t reply, mach_msg_type_name_t reply_type,
data_t *data, mach_msg_type_number_t *len)
diff --git a/libtrivfs/fsys-get-source.c b/libtrivfs/fsys-get-source.c
index 37ae57d7..7e95a2b5 100644
--- a/libtrivfs/fsys-get-source.c
+++ b/libtrivfs/fsys-get-source.c
@@ -26,7 +26,7 @@
appropriate in the context of the translator. For example, if the
translator is a filesystem residing on a block device, then SOURCE
should be the file name of the underlying block device. */
-error_t
+kern_return_t
trivfs_S_fsys_get_source (struct trivfs_control *fsys,
mach_port_t reply,
mach_msg_type_name_t replyPoly,
diff --git a/libtrivfs/fsys-set-options.c b/libtrivfs/fsys-set-options.c
index ca5a9458..cb2015ce 100644
--- a/libtrivfs/fsys-set-options.c
+++ b/libtrivfs/fsys-set-options.c
@@ -23,7 +23,7 @@
#include "priv.h"
#include "trivfs_fsys_S.h"
-error_t
+kern_return_t
trivfs_S_fsys_set_options (struct trivfs_control *cntl,
mach_port_t reply, mach_msg_type_name_t reply_type,
const_data_t data, mach_msg_type_number_t len,
diff --git a/libtrivfs/io-identity.c b/libtrivfs/io-identity.c
index a67ed7ec..05888631 100644
--- a/libtrivfs/io-identity.c
+++ b/libtrivfs/io-identity.c
@@ -21,7 +21,7 @@
#include "priv.h"
#include "trivfs_io_S.h"
-error_t
+kern_return_t
trivfs_S_io_identity (struct trivfs_protid *cred,
mach_port_t reply,
mach_msg_type_name_t replytype,
diff --git a/libtrivfs/io-modes-set.c b/libtrivfs/io-modes-set.c
index 44846428..fd4ddee6 100644
--- a/libtrivfs/io-modes-set.c
+++ b/libtrivfs/io-modes-set.c
@@ -23,7 +23,7 @@
#include "trivfs_io_S.h"
#include <assert-backtrace.h>
-error_t
+kern_return_t
trivfs_S_io_set_all_openmodes (struct trivfs_protid *cred,
mach_port_t reply,
mach_msg_type_name_t replytype,