gitextract_g35awbco/ ├── .circleci/ │ └── config.yml ├── .credo.exs ├── .formatter.exs ├── .gitignore ├── CHANGELOG.md ├── LICENSES/ │ ├── Apache-2.0.txt │ ├── CC-BY-4.0.txt │ └── CC0-1.0.txt ├── Makefile ├── NOTICE ├── README.md ├── REUSE.toml ├── c_src/ │ ├── Makefile │ └── muontrap.c ├── lib/ │ ├── muontrap/ │ │ ├── cgroups.ex │ │ ├── daemon.ex │ │ ├── options.ex │ │ └── port.ex │ └── muontrap.ex ├── mix.exs └── test/ ├── Makefile ├── cgroup_test.exs ├── chatty.c ├── daemon_test.exs ├── do_nothing.c ├── echo_both.c ├── echo_junk.c ├── echo_stderr.c ├── echo_stdio.c ├── fork_a_lot.c ├── ignore_sigterm.c ├── kill_self_with_signal.c ├── kill_self_with_sigusr1.c ├── muontrap_test.exs ├── options_test.exs ├── port_test.exs ├── print_a_lot.c ├── succeed_second_time.c ├── support/ │ └── test_case.ex └── test_helper.exs