The following changes since commit 5fb4b36674b194ae6c6756314dc0c665fcaea06d: Fix hangs due to iodepth_low (2014-09-04 13:51:05 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 44c8268d6e6d3b3f1efb1eb8a1c2d7bba1e8477b: server: fix wrong use of exit() in server when daemonized (2014-09-11 17:05:58 -0600) ---------------------------------------------------------------- Jens Axboe (1): server: fix wrong use of exit() in server when daemonized server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/server.c b/server.c index e2a6f73..36713ee 100644 --- a/server.c +++ b/server.c @@ -1709,7 +1709,7 @@ int fio_start_server(char *pidfile) int ret = write_pid(pid, pidfile); free(pidfile); - exit(ret); + _exit(ret); } setsid(); -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html