gitextract_iakl50pb/ ├── .buzzy/ │ ├── links.yaml │ └── package.yaml ├── .clang-format ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── INSTALL ├── Makefile.am ├── README.markdown ├── autogen.sh ├── build-aux/ │ └── calculate ├── cmake/ │ ├── FindCTargets.cmake │ ├── FindParseArguments.cmake │ └── FindPrereqs.cmake ├── configure.ac ├── docs/ │ ├── .gitattributes │ ├── CMakeLists.txt │ └── old/ │ ├── CMakeLists.txt │ ├── _static/ │ │ ├── .keep │ │ ├── docco-sphinx.css │ │ └── pygments.css │ ├── _templates/ │ │ └── .keep │ ├── allocation.rst │ ├── array.rst │ ├── attributes.rst │ ├── basic-types.rst │ ├── bitset.rst │ ├── buffer.rst │ ├── byte-order.rst │ ├── cli.rst │ ├── conf.py │ ├── config.rst │ ├── dllist.rst │ ├── ds.rst │ ├── errors.rst │ ├── files.rst │ ├── gc.rst │ ├── hash-table.rst │ ├── hash-values.rst │ ├── index.rst │ ├── int128.rst │ ├── managed-buffer.rst │ ├── mempool.rst │ ├── net-addresses.rst │ ├── process.rst │ ├── ring-buffer.rst │ ├── slice.rst │ ├── stream.rst │ ├── subprocess.rst │ ├── threads.rst │ ├── timestamps.rst │ ├── unique-ids.rst │ ├── versions.rst │ └── visibility.rst ├── extras/ │ └── hashstring.py ├── include/ │ ├── CMakeLists.txt │ └── libcork/ │ ├── cli/ │ │ └── commands.h │ ├── cli.h │ ├── config/ │ │ ├── arch.h │ │ ├── bsd.h │ │ ├── config.h │ │ ├── gcc.h │ │ ├── linux.h │ │ ├── macosx.h │ │ └── version.h.in │ ├── config.h │ ├── core/ │ │ ├── allocator.h │ │ ├── api.h │ │ ├── attributes.h │ │ ├── byte-order.h │ │ ├── callbacks.h │ │ ├── error.h │ │ ├── gc.h │ │ ├── hash.h │ │ ├── id.h │ │ ├── mempool.h │ │ ├── net-addresses.h │ │ ├── timestamp.h │ │ ├── types.h │ │ └── u128.h │ ├── core.h │ ├── ds/ │ │ ├── array.h │ │ ├── bitset.h │ │ ├── buffer.h │ │ ├── dllist.h │ │ ├── hash-table.h │ │ ├── managed-buffer.h │ │ ├── ring-buffer.h │ │ ├── slice.h │ │ └── stream.h │ ├── ds.h │ ├── helpers/ │ │ ├── errors.h │ │ ├── gc.h │ │ └── posix.h │ ├── os/ │ │ ├── files.h │ │ ├── process.h │ │ └── subprocess.h │ ├── os.h │ ├── threads/ │ │ ├── atomics.h │ │ └── basics.h │ └── threads.h ├── m4/ │ ├── ax_pthread.m4 │ └── ax_valgrind_check.m4 ├── make-dist.sh ├── run.sh ├── scripts/ │ ├── install │ └── test ├── share/ │ ├── CMakeLists.txt │ └── valgrind/ │ └── libcork.supp ├── src/ │ ├── APPNAME.pc.in │ ├── CMakeLists.txt │ ├── cork-hash/ │ │ └── cork-hash.c │ ├── cork-initializer/ │ │ ├── init1.c │ │ ├── init2.c │ │ └── main.c │ ├── cork-test/ │ │ └── cork-test.c │ ├── libcork/ │ │ ├── cli/ │ │ │ └── commands.c │ │ ├── core/ │ │ │ ├── allocator.c │ │ │ ├── error.c │ │ │ ├── gc.c │ │ │ ├── hash.c │ │ │ ├── id.c │ │ │ ├── ip-address.c │ │ │ ├── mempool.c │ │ │ ├── timestamp.c │ │ │ ├── u128.c │ │ │ └── version.c │ │ ├── ds/ │ │ │ ├── array.c │ │ │ ├── bitset.c │ │ │ ├── buffer.c │ │ │ ├── dllist.c │ │ │ ├── file-stream.c │ │ │ ├── hash-table.c │ │ │ ├── managed-buffer.c │ │ │ ├── ring-buffer.c │ │ │ ├── slice.c │ │ │ └── stream.c │ │ ├── posix/ │ │ │ ├── directory-walker.c │ │ │ ├── env.c │ │ │ ├── exec.c │ │ │ ├── files.c │ │ │ ├── process.c │ │ │ └── subprocess.c │ │ └── pthreads/ │ │ └── thread.c │ └── libcork.pc.in └── tests/ ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── COPYING.cram.txt ├── ccram ├── cork-hash.t ├── cork-initializer.t ├── cork-test/ │ ├── cleanup.t │ ├── directory-watcher.t │ ├── help1-c1-s1.t │ ├── help1-c1-s2.t │ ├── help1-c1.t │ ├── help1-c2.t │ ├── help1-root.t │ ├── help2-c1-s1.t │ ├── help2-c1-s2.t │ ├── help2-c1.t │ ├── help2-c2.t │ ├── help2-root.t │ ├── help3-c1-s1.t │ ├── help3-c1-s2.t │ ├── help3-c1.t │ ├── help3-c2.t │ ├── help3-root.t │ ├── no-command-c1.t │ ├── no-command-root.t │ ├── run-c1-s1-f-t.t │ ├── run-c1-s1-f.t │ ├── run-c1-s1-t.t │ ├── run-c1-s1-test.t │ ├── run-c1-s1.t │ ├── run-c1-s2-f.t │ ├── run-c1-s2-file.t │ ├── run-c1-s2.t │ ├── run-c2.t │ ├── run-find-01.t │ ├── run-find-all-01.t │ ├── run-mkdir-01.t │ ├── run-paths-01.t │ ├── run-pwd-01.t │ ├── run-rm-01.t │ ├── run-sub-01.t │ ├── run-sub-02.t │ ├── run-sub-03.t │ ├── run-sub-04.t │ ├── run-sub-05.t │ └── run-sub-06.t ├── cram.py ├── create-u128-test-cases.py ├── helpers.h ├── test-array.c ├── test-bitset.c ├── test-buffer.c ├── test-core.c ├── test-dllist.c ├── test-files.c ├── test-gc.c ├── test-hash-table.c ├── test-managed-buffer.c ├── test-mempool.c ├── test-ring-buffer.c ├── test-slice.c ├── test-subprocess.c ├── test-threads.c └── test-u128.c