diff options
-rw-r--r-- | libdiskfs/init-startup.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libdiskfs/init-startup.c b/libdiskfs/init-startup.c index ff1622f0..bf955d20 100644 --- a/libdiskfs/init-startup.c +++ b/libdiskfs/init-startup.c @@ -191,6 +191,13 @@ _diskfs_init_completed () if (err) goto errout; + /* Mark us as important. */ + err = proc_mark_important (proc); + /* This might fail due to permissions or because the old proc server + is still running, ignore any such errors. */ + if (err && err != EPERM && err != EMIG_BAD_ID) + goto errout; + err = proc_getmsgport (proc, HURD_PID_STARTUP, &init); mach_port_deallocate (mach_task_self (), proc); if (err) |