diff options
author | Roland McGrath <roland@gnu.org> | 2001-04-15 22:44:00 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-04-15 22:44:00 +0000 |
commit | 3384a3518bf61eac985d8715881f5e19b36464c3 (patch) | |
tree | 0adbc5a88e42b6e8b835ba772f8dce2f3546e1a6 /libdiskfs | |
parent | 0957bc32baec1a926c8b61afd3a1885002092761 (diff) |
2001-04-14 Neal H Walfield <neal@cs.uml.edu>
* init-startup.c (diskfs_startup_diskfs): Use ERR, not errno, so
we can actually read this variable in a debugger.
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/init-startup.c | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/libdiskfs/init-startup.c b/libdiskfs/init-startup.c index 26d98fe4..bdf0e9b9 100644 --- a/libdiskfs/init-startup.c +++ b/libdiskfs/init-startup.c @@ -32,6 +32,7 @@ char *_diskfs_chroot_directory; mach_port_t diskfs_startup_diskfs (mach_port_t bootstrap, int flags) { + error_t err; mach_port_t realnode, right; struct port_info *newpi; @@ -39,7 +40,6 @@ diskfs_startup_diskfs (mach_port_t bootstrap, int flags) { /* The boot options requested we change to a subdirectory and treat that as the root of the filesystem. */ - error_t err; struct node *np, *old; struct protid *rootpi; @@ -85,21 +85,19 @@ diskfs_startup_diskfs (mach_port_t bootstrap, int flags) if (bootstrap != MACH_PORT_NULL) { - errno = ports_create_port (diskfs_control_class, diskfs_port_bucket, - sizeof (struct port_info), &newpi); - if (! errno) + err = ports_create_port (diskfs_control_class, diskfs_port_bucket, + sizeof (struct port_info), &newpi); + if (! err) { right = ports_get_send_right (newpi); - errno = fsys_startup (bootstrap, flags, right, - MACH_MSG_TYPE_COPY_SEND, &realnode); + err = fsys_startup (bootstrap, flags, right, + MACH_MSG_TYPE_COPY_SEND, &realnode); mach_port_deallocate (mach_task_self (), right); ports_port_deref (newpi); } - if (errno) - { - perror ("Translator startup failure: fsys_startup"); - exit (1); - } + if (err) + error (1, err, "Translator startup failure: fsys_startup"); + mach_port_deallocate (mach_task_self (), bootstrap); _diskfs_ncontrol_ports++; |