diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-05-10 19:55:21 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-05-10 19:55:21 +0000 |
commit | b494f8422de12b80ca60a111a76e53b37d689863 (patch) | |
tree | 505cdc45bae60ce79ae045ba36e9f02830e368fa /libtrivfs | |
parent | 1ead49ee22fbe0bca7dd9098ca931b4f6852ceae (diff) |
entered into RCS
Diffstat (limited to 'libtrivfs')
-rw-r--r-- | libtrivfs/demuxer.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libtrivfs/demuxer.c b/libtrivfs/demuxer.c index 676f78a6..f30e057b 100644 --- a/libtrivfs/demuxer.c +++ b/libtrivfs/demuxer.c @@ -22,20 +22,20 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "priv.h" int -ports_demuxer (mach_msg_header_t *inp, - mach_msg_header_t *outp) +trivfs_demuxer (mach_msg_header_t *inp, + mach_msg_header_t *outp) { - int fs_server (mach_msg_header_t *, mach_msg_header_t *); - int io_server (mach_msg_header_t *, mach_msg_header_t *); - int fsys_server (mach_msg_header_t *, mach_msg_header_t *); - int notify_server (mach_msg_header_t *, mach_msg_header_t *); - int interrupt_server (mach_msg_header_t *, mach_msg_header_t *); + int trivfs_fs_server (mach_msg_header_t *, mach_msg_header_t *); + int trivfs_io_server (mach_msg_header_t *, mach_msg_header_t *); + int trivfs_fsys_server (mach_msg_header_t *, mach_msg_header_t *); + int trivfs_notify_server (mach_msg_header_t *, mach_msg_header_t *); + int trivfs_interrupt_server (mach_msg_header_t *, mach_msg_header_t *); - return (io_server (inp, outp) - || fs_server (inp, outp) - || notify_server (inp, outp) - || fsys_server (inp, outp) - || interrupt_server (inp, outp)); + return (trivfs_io_server (inp, outp) + || trivfs_fs_server (inp, outp) + || trivfs_notify_server (inp, outp) + || trivfs_fsys_server (inp, outp) + || trivfs_interrupt_server (inp, outp)); } |