Speed up MistInBuffer shutdown time
This commit is contained in:
parent
97b28bebda
commit
f862263354
3 changed files with 6 additions and 1 deletions
|
@ -29,6 +29,9 @@ bool Util::Procs::thread_handler = false;
|
|||
tthread::mutex Util::Procs::plistMutex;
|
||||
tthread::thread *Util::Procs::reaper_thread = 0;
|
||||
|
||||
/// How many seconds to wait when shutting down child processes. Defaults to 10
|
||||
int Util::Procs::kill_timeout = 10;
|
||||
|
||||
/// Local-only function. Attempts to reap child and returns current running status.
|
||||
bool Util::Procs::childRunning(pid_t p){
|
||||
int status;
|
||||
|
@ -98,7 +101,7 @@ void Util::Procs::exit_handler(){
|
|||
(int)listcopy.size());
|
||||
waiting = 0;
|
||||
// wait up to 10 seconds for applications to shut down
|
||||
while (!listcopy.empty() && waiting <= 500){
|
||||
while (!listcopy.empty() && waiting <= 50*Util::Procs::kill_timeout){
|
||||
bool doWait = true;
|
||||
for (it = listcopy.begin(); it != listcopy.end(); it++){
|
||||
if (!childRunning(*it)){
|
||||
|
|
|
@ -42,5 +42,6 @@ namespace Util{
|
|||
static void forget(pid_t pid);
|
||||
static void remember(pid_t pid);
|
||||
static std::set<int> socketList; ///< Holds sockets that should be closed before forking
|
||||
static int kill_timeout;
|
||||
};
|
||||
}// namespace Util
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue