Execute a child process with ptrace enabled. Currently requires Nightly Rust.
```rust,no_run
use spawn_ptrace::CommandPtraceSpawn; use std::process::Command;
let child = try!(Command::new("/bin/ls").spawn_ptrace());
// call ptrace(PTRACE_CONT, child.id(), ...)
to continue execution
// do other ptrace things here...
```