diff options
Diffstat (limited to 'src/tty')
-rw-r--r-- | src/tty/unix.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tty/unix.rs b/src/tty/unix.rs index b341638f..e8a28c91 100644 --- a/src/tty/unix.rs +++ b/src/tty/unix.rs @@ -38,7 +38,7 @@ use std::os::unix::io::AsRawFd; /// Process ID of child process /// /// Necessary to put this in static storage for `sigchld` to have access -static mut PID: pid_t = 0; +pub static mut PID: pid_t = 0; /// Exit flag /// |