├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .prettierrc ├── Cargo.lock ├── Cargo.toml ├── README.md ├── src ├── line_reader.rs ├── log.rs ├── main.rs ├── signal_closure.rs └── waitpid.rs ├── tests ├── signals.py ├── test_cli.rs └── zombie_creator.py └── tools └── release /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | node_modules 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/.prettierrc -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/README.md -------------------------------------------------------------------------------- /src/line_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/src/line_reader.rs -------------------------------------------------------------------------------- /src/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/src/log.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/signal_closure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/src/signal_closure.rs -------------------------------------------------------------------------------- /src/waitpid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/src/waitpid.rs -------------------------------------------------------------------------------- /tests/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/tests/signals.py -------------------------------------------------------------------------------- /tests/test_cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/tests/test_cli.rs -------------------------------------------------------------------------------- /tests/zombie_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/tests/zombie_creator.py -------------------------------------------------------------------------------- /tools/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esamattis/multip/HEAD/tools/release --------------------------------------------------------------------------------