Tls support

This commit is contained in:
bjorn3
2019-10-27 16:55:35 +01:00
parent 0e0afb4f1f
commit c8de552c01
13 changed files with 270 additions and 207 deletions

View File

@@ -12,6 +12,10 @@ fn main() {
let stderr = ::std::io::stderr();
let mut stderr = stderr.lock();
std::thread::spawn(move || {
println!("Hello from another thread!");
});
writeln!(stderr, "some {} text", "<unknown>").unwrap();
let _ = std::process::Command::new("true").env("c", "d").spawn();