]> granicus.if.org Git - fcron/commitdiff
option serial_once added
authorthib <thib>
Wed, 21 Jun 2000 13:46:55 +0000 (13:46 +0000)
committerthib <thib>
Wed, 21 Jun 2000 13:46:55 +0000 (13:46 +0000)
option.h

index 80103894c33ef05f25d4ab4b05b364b3aa1d8c82..8aeaf88cbf5bec482206795da25f103f57ebf35e 100644 (file)
--- 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 */
 
        (_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__ */