Rename 'cleanup' to 'post'.
[whenjobs.git] / lib / whenexpr.ml
index f1f2a89..2cb6863 100644 (file)
@@ -83,14 +83,22 @@ type shell_script = {
   sh_script : string;
 }
 
+type preinfo = {
+  pi_job_name : string;
+  pi_serial : Big_int.big_int;
+}
+
 type result = {
   res_job_name : string;
+  res_serial : Big_int.big_int;
   res_code : int;
   res_tmpdir : string;
   res_output : string;
+  res_start_time : float;
 }
 
-type cleanup = result -> unit
+type pre = preinfo -> bool
+type post = result -> unit
 
 type variable =
   | T_unit
@@ -122,7 +130,8 @@ type job_cond =
 type job = {
   job_loc : Loc.t;
   job_name : string;
-  job_cleanup : cleanup option;
+  job_pre : pre option;
+  job_post : post option;
   job_cond : job_cond;
   job_script : shell_script;
 }