check-runner-sys 0.1.0

Unsafe syscall wrappers for check-runner process-group operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[package]
name = "check-runner-sys"
version = "0.1.0"
edition = "2021"
description = "Unsafe syscall wrappers for check-runner process-group operations"
license = "Apache-2.0"
[package.metadata.unsafe_justification]
reason = [
    "killpg() for process-group termination — no safe Rust wrapper exists",
    "kill(pid, 0) for liveness check — std::process::Command does not expose PID",
    "set_var/remove_var in test-only context — required to test env filtering",
]
[dependencies]
libc = "0.2"