*** empty log message ***
authorthib <thib>
Tue, 20 Jun 2000 20:36:19 +0000 (20:36 +0000)
committerthib <thib>
Tue, 20 Jun 2000 20:36:19 +0000 (20:36 +0000)
config.h.in

index 269463a30b42db1777bf75c158776542a61922a6..090b3942d9e76800bd271166fc404e109aed806e 100644 (file)
@@ -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 $ */
 
 
 /* *********************************************************** */
 
 /* *** 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 */
 
 
 /* *** 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.