about summary refs log tree commit diff
path: root/src/libstd/sys/unix/process.rs
AgeCommit message (Expand)AuthorLines
2016-11-23Separated fuchsia-specific process stuff into 'process_fuchsia.rs' and refact...Theodore DeRego-865/+0
2016-11-22Cleaned up and appeased the linterTheodore DeRego-64/+28
2016-11-22Fuchsia support for std::process via liblaunchpad.Theodore DeRego-3/+233
2016-09-30Call emcc with ERROR_ON_UNDEFINED_SYMBOLSBrian Anderson-3/+2
2016-09-30Ignore lots and lots of std tests on emscriptenBrian Anderson-0/+1
2016-08-24Use `#[prelude_import]` in `libstd`.Jeffrey Seyfried-2/+0
2016-07-12Use `ptr::{null, null_mut}` instead of `0 as *{const, mut}`Tobias Bucher-5/+5
2016-05-30std: Clean out old unstable + deprecated APIsAlex Crichton-11/+0
2016-05-09Auto merge of #33224 - alexcrichton:create-exit-status, r=aturonbors-0/+6
2016-05-05Fix some some duplicate words.Georg Brandl-1/+1
2016-04-26std: Allow creating ExitStatus from raw valuesAlex Crichton-0/+6
2016-04-04std: Fix linking against `signal` on AndroidAlex Crichton-1/+1
2016-03-22fix alignmentJorge Aparicio-1/+1
2016-03-22std: undo conversion of user defined try!sJorge Aparicio-11/+11
2016-03-22try! -> ?Jorge Aparicio-22/+22
2016-03-09std: Don't spawn threads in `wait_with_output`Alex Crichton-1/+1
2016-03-08std: Don't always create stdin for childrenAlex Crichton-5/+8
2016-02-10std: Move constant back to where it needs to beAlex Crichton-2/+2
2016-02-10std: Use macros from libc instead of locallyAlex Crichton-24/+3
2016-02-10std: Implement CommandExt::execAlex Crichton-2/+14
2016-02-10std: Push process stdio setup in std::sysAlex Crichton-187/+256
2016-02-10std: Rename Stdio::None to Stdio::NullAlex Crichton-9/+7
2016-02-10std: Push Child's exit status to sys::processAlex Crichton-22/+20
2016-02-10std: Implement CommandExt::before_execAlex Crichton-2/+13
2016-02-10std: Refactor process spawning on UnixAlex Crichton-163/+162
2016-02-06Add the asmjs-unknown-emscripten triple. Add cfgs to libs.Brian Anderson-1/+2
2016-02-03Auto merge of #31078 - nbaksalyar:illumos, r=alexcrichtonbors-1/+1
2016-02-03std: Properly handle interior NULs in std::processKamal Marhubi-15/+57
2016-01-31Rename sunos to solarisNikita Baksalyar-1/+1
2016-01-31Add Illumos supportNikita Baksalyar-1/+1
2016-01-24sys/unix/process.rs: Update comments in make_argv and make_envpGeoffrey Thomas-9/+6
2016-01-11Auto merge of #30490 - ipetkov:unix-spawn, r=alexcrichtonbors-0/+32
2015-12-29Fix warnings when compiling stdlib with --testFlorian Hahn-2/+3
2015-12-25libstd: unix process spawning: fix bug with setting stdioIvan Petkov-0/+32
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-6/+10
2015-11-09std: Migrate to the new libcAlex Crichton-23/+22
2015-11-06std: Refactor process exit code handling slightlyAlex Crichton-47/+48
2015-10-28Port the standard crates to PNaCl/NaCl.Richard Diamond-16/+27
2015-09-29Tweak Travis to use GCEAlex Crichton-11/+22
2015-09-21Various fixes for NetBSD/amd64Sebastian Wicki-0/+1
2015-09-03Use `null()`/`null_mut()` instead of `0 as *const T`/`0 as *mut T`Vadim Petrochenkov-1/+1
2015-08-10Auto merge of #27516 - alexcrichton:osx-flaky-zomg, r=brsonbors-0/+4
2015-08-04std: Ignore test_process_mask on OSXAlex Crichton-0/+4
2015-08-01std: Allow to spawn a process as a session leader on UNIXMickaël Salaün-3/+3
2015-07-01Add netbsd amd64 supportAlex Newman-0/+1
2015-06-22Fix build on Android API levels below 21Geoffrey Thomas-0/+10
2015-06-22sys/unix/process: Reset signal behavior before execGeoffrey Thomas-0/+74
2015-06-19liblibc: Fix prototype of functions taking `char *const argv[]`Geoffrey Thomas-1/+1
2015-06-09std: Tweak process raising/lowering implementationsAlex Crichton-22/+11
2015-05-29Auto merge of #25494 - alexcrichton:stdio-from-raw, r=aturonbors-0/+13