From 7f302131a506dc3e5c2fdec18efb2bfd9c16ba2c Mon Sep 17 00:00:00 2001 From: thib Date: Tue, 20 Jun 2000 20:36:19 +0000 Subject: [PATCH] *** empty log message *** --- config.h.in | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/config.h.in b/config.h.in index 269463a..090b394 100644 --- a/config.h.in +++ b/config.h.in @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: config.h.in,v 1.6 2000-06-19 12:41:43 thib Exp $ */ + /* $Id: config.h.in,v 1.7 2000-06-20 20:36:19 thib Exp $ */ /* *********************************************************** */ @@ -85,6 +85,13 @@ /* *** memory *** */ +#define EXE_ARRAY_INITIAL_SIZE 10 /* initial number of possible running job + * if more job have to be run simultaneously, + * fcron will have to perform a realloc() */ +#define EXE_ARRAY_GROW_SIZE 10 /* this is the number of entries that will be + * added to exe_array each time it has to grow + * up */ + #define MAXENTRIES 256 /* max lines in non-root fcrontabs */ #define LINE_LEN 1024 /* max line length in user's config file */ @@ -95,9 +102,12 @@ /* *** time *** */ -#define FIRST_SLEEP 60 /* fcron sleep at least this time after startup +#define FIRST_SLEEP 20 /* fcron sleep at least this time after startup * before executing a job, to avoid to run jobs * during system boot */ +#define FIRST_SLEEP_SERIAL 60 /* fcron sleep at least this time after startup + * before executing a serial job (job executed + * by option bootrun are serialized) */ #define SAVE_VARIATION 120 /* if a job is run at less than SAVE_VARIATION * from normal time to save, save is performed * after execution of the job. -- 2.50.1