From 7e8415b57265652cbb741fc543a451a2f494e583 Mon Sep 17 00:00:00 2001 From: thib Date: Wed, 21 Jun 2000 13:46:55 +0000 Subject: [PATCH] option serial_once added --- option.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/option.h b/option.h index 8010389..8aeaf88 100644 --- a/option.h +++ b/option.h @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: option.h,v 1.3 2000-06-19 12:44:33 thib Exp $ */ + /* $Id: option.h,v 1.4 2000-06-21 13:46:55 thib Exp $ */ /* read and set options of a line */ @@ -146,5 +146,17 @@ (_bit_clear(opt, 6)) +/* + bit 7 : set to 1 : job is being serialized once + set to 0 : job is not being serialized once +*/ +#define is_serial_once(opt) \ + (_bit_test(opt, 7)) +#define set_serial_once(opt) \ + (_bit_set(opt, 7)) +#define clear_serial_once(opt) \ + (_bit_clear(opt, 7)) + + #endif /* __OPTIONH__ */ -- 2.40.0