From 82d69d247c7de8387b92936086abdc3d441c8628 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 18 Nov 2021 22:10:55 +0000 Subject: Rename pipelining --- src/pipelining/SPDebug.ml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/pipelining/SPDebug.ml (limited to 'src/pipelining/SPDebug.ml') diff --git a/src/pipelining/SPDebug.ml b/src/pipelining/SPDebug.ml new file mode 100644 index 0000000..34d1c0c --- /dev/null +++ b/src/pipelining/SPDebug.ml @@ -0,0 +1,21 @@ +(***********************************************************************) +(* *) +(* Compcert Extensions *) +(* *) +(* Jean-Baptiste Tristan *) +(* *) +(* All rights reserved. This file is distributed under the terms *) +(* described in file ../../LICENSE. *) +(* *) +(***********************************************************************) + + +open Unix + +let tm = localtime (time ());; +let name = "debug/" ^ (string_of_int tm.tm_year) ^ "-" ^(string_of_int tm.tm_mon) ^ "-" ^(string_of_int tm.tm_mday) ^ + "-" ^(string_of_int tm.tm_hour) ^"-" ^(string_of_int tm.tm_min) ^ "-" ^(string_of_int tm.tm_sec) ^ "/";; +mkdir name 0o777;; +Printf.printf "Debug informations: %s \n" name ;; +let dc = open_out (name ^ "debug.log");; +let () = at_exit(fun () -> close_out dc);; -- cgit