diff options
| author | Emilio Jesus Gallego Arias | 2019-07-08 12:23:00 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2019-07-08 12:23:00 +0200 |
| commit | d6954d853ac1e0bdcf63a50b9d96fcb38559d8a9 (patch) | |
| tree | 5c17149292f54e3bfe3b4d3977825a10c3de8a92 /topbin | |
| parent | ae7fc8bc74289bd8a1eca48c8ca8ecf923888285 (diff) | |
| parent | f2779d48d3b7735687444e22b16cdb7cb8f7ce60 (diff) | |
Merge PR #10246: Investigations in the initialization of coq binaries and command line (part 1)
Reviewed-by: ejgallego
Ack-by: gares
Ack-by: herbelin
Diffstat (limited to 'topbin')
| -rw-r--r-- | topbin/coqproofworker_bin.ml | 2 | ||||
| -rw-r--r-- | topbin/coqqueryworker_bin.ml | 2 | ||||
| -rw-r--r-- | topbin/coqtacticworker_bin.ml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/topbin/coqproofworker_bin.ml b/topbin/coqproofworker_bin.ml index baf76582ac..2715406b13 100644 --- a/topbin/coqproofworker_bin.ml +++ b/topbin/coqproofworker_bin.ml @@ -11,4 +11,4 @@ module W = AsyncTaskQueue.MakeWorker(Stm.ProofTask) () let () = - WorkerLoop.start ~init:W.init_stdout ~loop:W.main_loop + WorkerLoop.start ~init:W.init_stdout ~loop:W.main_loop "coqproofworker" diff --git a/topbin/coqqueryworker_bin.ml b/topbin/coqqueryworker_bin.ml index 0f7005e422..225158e064 100644 --- a/topbin/coqqueryworker_bin.ml +++ b/topbin/coqqueryworker_bin.ml @@ -10,4 +10,4 @@ module W = AsyncTaskQueue.MakeWorker(Stm.QueryTask) () -let () = WorkerLoop.start ~init:W.init_stdout ~loop:W.main_loop +let () = WorkerLoop.start ~init:W.init_stdout ~loop:W.main_loop "coqqueryworker" diff --git a/topbin/coqtacticworker_bin.ml b/topbin/coqtacticworker_bin.ml index 19a8cde88a..962028e0e7 100644 --- a/topbin/coqtacticworker_bin.ml +++ b/topbin/coqtacticworker_bin.ml @@ -10,4 +10,4 @@ module W = AsyncTaskQueue.MakeWorker(Stm.TacTask) () -let () = WorkerLoop.start ~init:W.init_stdout ~loop:W.main_loop +let () = WorkerLoop.start ~init:W.init_stdout ~loop:W.main_loop "coqtacticworker" |
