├── .github └── workflows │ └── build.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── dune ├── dune-project ├── hack_parallel.ml ├── hack_parallel.mli ├── hack_parallel.opam ├── scripts ├── dune ├── gen_build_id.ml └── script_utils.ml └── src ├── heap ├── dune ├── hh_assert.c ├── hh_assert.h ├── hh_shared.c ├── hh_shared.h ├── hh_shared_sqlite.c ├── hh_shared_sqlite.h ├── prefix.ml ├── prefix.mli ├── sharedMem.ml ├── sharedMem.mli ├── value.ml ├── value.mli ├── workerCancel.ml └── workerCancel.mli ├── injection └── default_injector │ ├── dune │ ├── injector_config.ml │ └── injector_config.mli ├── interface ├── dune ├── hack_parallel_intf.ml ├── hack_parallel_intf.mli ├── memory.ml ├── memory.mli ├── scheduler.ml └── scheduler.mli ├── procs ├── dune ├── hack_bucket.ml ├── hack_bucket.mli ├── multiWorker.ml ├── multiWorker.mli ├── worker.ml └── worker.mli ├── socket ├── dune └── socket.ml ├── stubs ├── dune └── eventLogger.ml ├── third-party ├── hack_core │ ├── LICENSE │ ├── VERSION │ ├── dune │ ├── hack_caml.ml │ ├── hack_commutative_group.ml │ ├── hack_container.ml │ ├── hack_core_list.ml │ ├── hack_core_printf.ml │ ├── hack_monad.ml │ ├── hack_option.ml │ ├── hack_poly.ml │ ├── hack_polymorphic_compare.ml │ ├── hack_polymorphic_compare.mli │ ├── hack_result.ml │ └── hack_result.mli ├── inotify │ ├── LICENSE │ ├── dune │ └── inotify_stubs.c └── lz4 │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── VERSION │ ├── dune │ ├── liblz4.pc.in │ ├── lz4.c │ ├── lz4.h │ ├── lz4frame.c │ ├── lz4frame.h │ ├── lz4frame_static.h │ ├── lz4hc.c │ ├── lz4hc.h │ ├── xxhash.c │ └── xxhash.h └── utils ├── collections ├── dune ├── iMap.ml ├── iSet.ml ├── intKey.ml ├── myMap.ml ├── myMap.mli ├── myMap_sig.ml ├── sMap.ml ├── sSet.ml └── stringKey.ml ├── daemon.ml ├── daemon.mli ├── disk ├── disk.ml ├── disk.mli ├── disk_sig.ml ├── dune ├── realDisk.ml ├── testDisk.ml └── testDisk.mli ├── dune ├── exit_status.ml ├── files.c ├── fork.ml ├── hack_core.ml ├── hack_path.ml ├── hack_path.mli ├── handle.ml ├── handle_stubs.c ├── hh_json ├── dune ├── hh_json.ml └── hh_json.mli ├── hh_logger.ml ├── lock.ml ├── marshal_tools.ml ├── marshal_tools.mli ├── measure.ml ├── measure.mli ├── nproc.c ├── pidLog.ml ├── printSignal.ml ├── priorities.c ├── realpath.c ├── stats.ml ├── string_utils.ml ├── sys_utils.ml ├── sysinfo.c ├── timeout.ml ├── timeout.mli └── utils.ml /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/README.md -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/dune -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.11) 2 | (name hack_parallel) 3 | -------------------------------------------------------------------------------- /hack_parallel.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/hack_parallel.ml -------------------------------------------------------------------------------- /hack_parallel.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/hack_parallel.mli -------------------------------------------------------------------------------- /hack_parallel.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/hack_parallel.opam -------------------------------------------------------------------------------- /scripts/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/scripts/dune -------------------------------------------------------------------------------- /scripts/gen_build_id.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/scripts/gen_build_id.ml -------------------------------------------------------------------------------- /scripts/script_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/scripts/script_utils.ml -------------------------------------------------------------------------------- /src/heap/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/dune -------------------------------------------------------------------------------- /src/heap/hh_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/hh_assert.c -------------------------------------------------------------------------------- /src/heap/hh_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/hh_assert.h -------------------------------------------------------------------------------- /src/heap/hh_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/hh_shared.c -------------------------------------------------------------------------------- /src/heap/hh_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/hh_shared.h -------------------------------------------------------------------------------- /src/heap/hh_shared_sqlite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/hh_shared_sqlite.c -------------------------------------------------------------------------------- /src/heap/hh_shared_sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/hh_shared_sqlite.h -------------------------------------------------------------------------------- /src/heap/prefix.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/prefix.ml -------------------------------------------------------------------------------- /src/heap/prefix.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/prefix.mli -------------------------------------------------------------------------------- /src/heap/sharedMem.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/sharedMem.ml -------------------------------------------------------------------------------- /src/heap/sharedMem.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/sharedMem.mli -------------------------------------------------------------------------------- /src/heap/value.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/value.ml -------------------------------------------------------------------------------- /src/heap/value.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/value.mli -------------------------------------------------------------------------------- /src/heap/workerCancel.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/workerCancel.ml -------------------------------------------------------------------------------- /src/heap/workerCancel.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/heap/workerCancel.mli -------------------------------------------------------------------------------- /src/injection/default_injector/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/injection/default_injector/dune -------------------------------------------------------------------------------- /src/injection/default_injector/injector_config.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/injection/default_injector/injector_config.ml -------------------------------------------------------------------------------- /src/injection/default_injector/injector_config.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/injection/default_injector/injector_config.mli -------------------------------------------------------------------------------- /src/interface/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/interface/dune -------------------------------------------------------------------------------- /src/interface/hack_parallel_intf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/interface/hack_parallel_intf.ml -------------------------------------------------------------------------------- /src/interface/hack_parallel_intf.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/interface/hack_parallel_intf.mli -------------------------------------------------------------------------------- /src/interface/memory.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/interface/memory.ml -------------------------------------------------------------------------------- /src/interface/memory.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/interface/memory.mli -------------------------------------------------------------------------------- /src/interface/scheduler.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/interface/scheduler.ml -------------------------------------------------------------------------------- /src/interface/scheduler.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/interface/scheduler.mli -------------------------------------------------------------------------------- /src/procs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/procs/dune -------------------------------------------------------------------------------- /src/procs/hack_bucket.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/procs/hack_bucket.ml -------------------------------------------------------------------------------- /src/procs/hack_bucket.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/procs/hack_bucket.mli -------------------------------------------------------------------------------- /src/procs/multiWorker.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/procs/multiWorker.ml -------------------------------------------------------------------------------- /src/procs/multiWorker.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/procs/multiWorker.mli -------------------------------------------------------------------------------- /src/procs/worker.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/procs/worker.ml -------------------------------------------------------------------------------- /src/procs/worker.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/procs/worker.mli -------------------------------------------------------------------------------- /src/socket/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/socket/dune -------------------------------------------------------------------------------- /src/socket/socket.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/socket/socket.ml -------------------------------------------------------------------------------- /src/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/stubs/dune -------------------------------------------------------------------------------- /src/stubs/eventLogger.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/stubs/eventLogger.ml -------------------------------------------------------------------------------- /src/third-party/hack_core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/LICENSE -------------------------------------------------------------------------------- /src/third-party/hack_core/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/VERSION -------------------------------------------------------------------------------- /src/third-party/hack_core/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/dune -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_caml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_caml.ml -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_commutative_group.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_commutative_group.ml -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_container.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_container.ml -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_core_list.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_core_list.ml -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_core_printf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_core_printf.ml -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_monad.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_monad.ml -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_option.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_option.ml -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_poly.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_poly.ml -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_polymorphic_compare.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_polymorphic_compare.ml -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_polymorphic_compare.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_polymorphic_compare.mli -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_result.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_result.ml -------------------------------------------------------------------------------- /src/third-party/hack_core/hack_result.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/hack_core/hack_result.mli -------------------------------------------------------------------------------- /src/third-party/inotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/inotify/LICENSE -------------------------------------------------------------------------------- /src/third-party/inotify/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/inotify/dune -------------------------------------------------------------------------------- /src/third-party/inotify/inotify_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/inotify/inotify_stubs.c -------------------------------------------------------------------------------- /src/third-party/lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/LICENSE -------------------------------------------------------------------------------- /src/third-party/lz4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/Makefile -------------------------------------------------------------------------------- /src/third-party/lz4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/README.md -------------------------------------------------------------------------------- /src/third-party/lz4/VERSION: -------------------------------------------------------------------------------- 1 | https://github.com/Cyan4973/lz4 @ r131 2 | -------------------------------------------------------------------------------- /src/third-party/lz4/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/dune -------------------------------------------------------------------------------- /src/third-party/lz4/liblz4.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/liblz4.pc.in -------------------------------------------------------------------------------- /src/third-party/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/lz4.c -------------------------------------------------------------------------------- /src/third-party/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/lz4.h -------------------------------------------------------------------------------- /src/third-party/lz4/lz4frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/lz4frame.c -------------------------------------------------------------------------------- /src/third-party/lz4/lz4frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/lz4frame.h -------------------------------------------------------------------------------- /src/third-party/lz4/lz4frame_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/lz4frame_static.h -------------------------------------------------------------------------------- /src/third-party/lz4/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/lz4hc.c -------------------------------------------------------------------------------- /src/third-party/lz4/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/lz4hc.h -------------------------------------------------------------------------------- /src/third-party/lz4/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/xxhash.c -------------------------------------------------------------------------------- /src/third-party/lz4/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/third-party/lz4/xxhash.h -------------------------------------------------------------------------------- /src/utils/collections/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/collections/dune -------------------------------------------------------------------------------- /src/utils/collections/iMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/collections/iMap.ml -------------------------------------------------------------------------------- /src/utils/collections/iSet.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/collections/iSet.ml -------------------------------------------------------------------------------- /src/utils/collections/intKey.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/collections/intKey.ml -------------------------------------------------------------------------------- /src/utils/collections/myMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/collections/myMap.ml -------------------------------------------------------------------------------- /src/utils/collections/myMap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/collections/myMap.mli -------------------------------------------------------------------------------- /src/utils/collections/myMap_sig.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/collections/myMap_sig.ml -------------------------------------------------------------------------------- /src/utils/collections/sMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/collections/sMap.ml -------------------------------------------------------------------------------- /src/utils/collections/sSet.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/collections/sSet.ml -------------------------------------------------------------------------------- /src/utils/collections/stringKey.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/collections/stringKey.ml -------------------------------------------------------------------------------- /src/utils/daemon.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/daemon.ml -------------------------------------------------------------------------------- /src/utils/daemon.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/daemon.mli -------------------------------------------------------------------------------- /src/utils/disk/disk.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/disk/disk.ml -------------------------------------------------------------------------------- /src/utils/disk/disk.mli: -------------------------------------------------------------------------------- 1 | include Disk_sig.S 2 | -------------------------------------------------------------------------------- /src/utils/disk/disk_sig.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/disk/disk_sig.ml -------------------------------------------------------------------------------- /src/utils/disk/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/disk/dune -------------------------------------------------------------------------------- /src/utils/disk/realDisk.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/disk/realDisk.ml -------------------------------------------------------------------------------- /src/utils/disk/testDisk.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/disk/testDisk.ml -------------------------------------------------------------------------------- /src/utils/disk/testDisk.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/disk/testDisk.mli -------------------------------------------------------------------------------- /src/utils/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/dune -------------------------------------------------------------------------------- /src/utils/exit_status.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/exit_status.ml -------------------------------------------------------------------------------- /src/utils/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/files.c -------------------------------------------------------------------------------- /src/utils/fork.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/fork.ml -------------------------------------------------------------------------------- /src/utils/hack_core.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/hack_core.ml -------------------------------------------------------------------------------- /src/utils/hack_path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/hack_path.ml -------------------------------------------------------------------------------- /src/utils/hack_path.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/hack_path.mli -------------------------------------------------------------------------------- /src/utils/handle.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/handle.ml -------------------------------------------------------------------------------- /src/utils/handle_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/handle_stubs.c -------------------------------------------------------------------------------- /src/utils/hh_json/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/hh_json/dune -------------------------------------------------------------------------------- /src/utils/hh_json/hh_json.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/hh_json/hh_json.ml -------------------------------------------------------------------------------- /src/utils/hh_json/hh_json.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/hh_json/hh_json.mli -------------------------------------------------------------------------------- /src/utils/hh_logger.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/hh_logger.ml -------------------------------------------------------------------------------- /src/utils/lock.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/lock.ml -------------------------------------------------------------------------------- /src/utils/marshal_tools.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/marshal_tools.ml -------------------------------------------------------------------------------- /src/utils/marshal_tools.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/marshal_tools.mli -------------------------------------------------------------------------------- /src/utils/measure.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/measure.ml -------------------------------------------------------------------------------- /src/utils/measure.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/measure.mli -------------------------------------------------------------------------------- /src/utils/nproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/nproc.c -------------------------------------------------------------------------------- /src/utils/pidLog.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/pidLog.ml -------------------------------------------------------------------------------- /src/utils/printSignal.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/printSignal.ml -------------------------------------------------------------------------------- /src/utils/priorities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/priorities.c -------------------------------------------------------------------------------- /src/utils/realpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/realpath.c -------------------------------------------------------------------------------- /src/utils/stats.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/stats.ml -------------------------------------------------------------------------------- /src/utils/string_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/string_utils.ml -------------------------------------------------------------------------------- /src/utils/sys_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/sys_utils.ml -------------------------------------------------------------------------------- /src/utils/sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/sysinfo.c -------------------------------------------------------------------------------- /src/utils/timeout.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/timeout.ml -------------------------------------------------------------------------------- /src/utils/timeout.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/timeout.mli -------------------------------------------------------------------------------- /src/utils/utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvantonder/hack_parallel/HEAD/src/utils/utils.ml --------------------------------------------------------------------------------