From c475da759dbd06648277060d72dced84bfcde348 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 6 Feb 2008 14:17:30 +0100 Subject: [PATCH] Fix misplaced exit(0) in cpus_allowed setting Must have been a leftover from some debug session. It prevented any job file with cpus_allowed set from running. Signed-off-by: Jens Axboe --- options.c | 1 - 1 file changed, 1 deletion(-) diff --git a/options.c b/options.c index 1e99810e..b59dd221 100644 --- a/options.c +++ b/options.c @@ -251,7 +251,6 @@ static int str_cpus_allowed_cb(void *data, const char *input) free(p); td->o.cpumask_set = 1; - exit(0); return 0; } #endif -- 2.25.1