I'm talking about this commit: https://github.com/nix-rust/nix/commit/53cae89c6892b1f125ef69a769ed8147fcba4d92 The issue is that according to a [man page](http://linux.die.net/man/2/clone) you need to mix a signal name to a flags in clone function, like this: ``` pid = clone(childFunc, stackTop, CLONE_NEWUTS | SIGCHLD, argv[1]); ``` But with bitflags you can't do it. E.g. `CloneFlags::from_bits(SIGCHLD)` returns `None`. Any good idea how to fix it? Revert the commit?