commit-hurd
[Top][All Lists]
Advanced

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

[hurd] 15/87: tmpfs: use a thread timeout


From: Samuel Thibault
Subject: [hurd] 15/87: tmpfs: use a thread timeout
Date: Sun, 09 Nov 2014 11:05:00 +0000

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

sthibault pushed a commit to branch upstream
in repository hurd.

commit f1e305fca2b4ca79cfed6d406ceb37f3dfb59f70
Author: Justus Winter <address@hidden>
Date:   Wed May 28 16:18:23 2014 +0200

    tmpfs: use a thread timeout
    
    There is no need to keep all the threads around, just the master
    thread.
    
    * tmpfs/tmpfs (diskfs_thread_function): Use a thread timeout.
---
 tmpfs/tmpfs.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tmpfs/tmpfs.c b/tmpfs/tmpfs.c
index a45d343..718c6d8 100644
--- a/tmpfs/tmpfs.c
+++ b/tmpfs/tmpfs.c
@@ -296,13 +296,14 @@ diskfs_append_args (char **argz, size_t *argz_len)
 static void *
 diskfs_thread_function (void *demuxer)
 {
+  static int thread_timeout = 1000 * 60 * 2; /* two minutes */
   error_t err;
 
   do
     {
       ports_manage_port_operations_multithread (diskfs_port_bucket,
                                                (ports_demuxer_type) demuxer,
-                                               0,
+                                               thread_timeout,
                                                0,
                                                0);
       err = diskfs_shutdown (0);

-- 
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]