commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[hurd] 39/70: libnetfs: register libnetfs-based translators as important


From: Samuel Thibault
Subject: [hurd] 39/70: libnetfs: register libnetfs-based translators as important
Date: Mon, 16 Sep 2013 07:41:41 +0000

This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch upstream
in repository hurd.

commit 5b7ec73d4a310b2ca8322124285a22bad56286d5
Author: Justus Winter <address@hidden>
Date:   Thu Aug 15 09:38:00 2013 +0200

    libnetfs: register libnetfs-based translators as important
    
    Register libnetfs-based translators running as root as important
    processes at the proc server.
    
    * libnetfs/init-startup.c (netfs_startup): Mark us as important.
---
 libnetfs/init-startup.c |   14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/libnetfs/init-startup.c b/libnetfs/init-startup.c
index 2e0f43a..e17c4f1 100644
--- a/libnetfs/init-startup.c
+++ b/libnetfs/init-startup.c
@@ -48,5 +48,19 @@ netfs_startup (mach_port_t bootstrap, int flags)
 
   mach_port_deallocate (mach_task_self (), bootstrap);
 
+  /* Mark us as important.  */
+  mach_port_t proc = getproc ();
+  if (proc == MACH_PORT_NULL)
+    error (12, err, "Translator startup failure: getproc");
+
+  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)
+    error (13, err, "Translator startup failure: proc_mark_important");
+
+  mach_port_deallocate (mach_task_self (), proc);
+
   return realnode;
 }

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-hurd/hurd.git



reply via email to

[Prev in Thread] Current Thread [Next in Thread]