improved "stop" functionality to better realise when a process

is no longer running.
This commit is contained in:
gardners 2012-05-01 07:05:02 +09:30
parent 3ca1c9c2b6
commit 44d0feb575

View File

@ -636,6 +636,7 @@ int app_server_stop(int argc, const char *const *argv, struct command_line_optio
switch (errno) {
case EINVAL: WHY("This is embarassing, but the operating system says I don't know how to send a signal."); break;
case EPERM: WHY("I don't have permission to stop the Serval process. You could try using sudo, or run the stop command as the appropriate user."); break;
case ENOENT:
case ESRCH: WHY("The process id I have recorded doesn't seem to exist anymore. Did someone kill the process without telling me?");
/* Clean up any lingering mess */
servalShutdownCleanly();