From 04de8fc618a34d786db9defde983a7f016538e84 Mon Sep 17 00:00:00 2001 From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Thu, 15 Aug 2013 09:37:59 +0200 Subject: libdiskfs: register libdiskfs-based translators as important Register libdiskfs-based translators running as root as important processes at the proc server. * libdiskfs/init-startup.c (_diskfs_init_completed): Mark us as important. --- libdiskfs/init-startup.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'libdiskfs') 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) -- cgit v1.2.3