about summary refs log tree commit diff
path: root/src/libstd/sys/wasm
AgeCommit message (Expand)AuthorLines
2020-07-27mv std libs to library/mark-766/+0
2020-07-15Introduce restricted-std feature.Eric Huss-1418/+19
2020-07-12adjust remaining targetsRalf Jung-2/+2
2020-06-10Migrate to numeric associated constsLzu Tao-3/+3
2020-05-17abort_internal is safeRalf Jung-2/+2
2020-04-26fix wasm buildSteven Fackler-0/+8
2020-04-26Update nameSteven Fackler-4/+4
2020-04-26Add Read/Write::can_read/write_vectoredSteven Fackler-0/+16
2020-04-02Remove stack overflow handler stub for wasm.Vytautas Astrauskas-8/+0
2020-03-21Rollup merge of #69955 - alexcrichton:stderr-infallible, r=sfacklerDylan DPC-4/+4
2020-03-20Fix abort-on-eprintln during process shutdownAlex Crichton-4/+4
2020-02-23Implement `Copy` for `IoSlice`LeSeulArtichaut-0/+1
2019-12-24Deprecate Error::description for realDavid Tolnay-0/+1
2019-12-22Format the worldMark Rousskov-51/+30
2019-12-21Require issue = "none" over issue = "0" in unstable attributesRoss MacArthur-1/+1
2019-11-30Rollup merge of #66705 - pitdicker:atomic_mut_ptr, r=KodrAusMazdak Farrokhzad-5/+5
2019-11-29Format libstd/sys with rustfmtDavid Tolnay-74/+54
2019-11-26Fix spelling typosBrian Wignall-1/+1
2019-11-24Use as_mut_ptr instead of castsPaul Dicker-5/+5
2019-09-05std: Improve downstream codegen in `Command::env`Alex Crichton-3/+5
2019-08-28std: Remove the `wasm_syscall` featureAlex Crichton-246/+18
2019-08-03Add {IoSlice, IoSliceMut}::advanceThomas de Zeeuw-0/+14
2019-07-25std: Use native `#[thread_local]` TLS on wasmAlex Crichton-129/+54
2019-06-17Make use of `ptr::null(_mut)` instead of casting zeroLzu Tao-1/+1
2019-06-10std: Remove internal definitions of `cfg_if!` macroAlex Crichton-2/+2
2019-05-25std: Depend on `backtrace` crate from crates.ioAlex Crichton-29/+0
2019-05-22Revert "Add implementations of last in terms of next_back on a bunch of Doubl...Steven Fackler-4/+0
2019-05-14Rollup merge of #60130 - khuey:efficient_last, r=sfacklerMazdak Farrokhzad-0/+4
2019-04-27Stabilized vectored IOSteven Fackler-17/+17
2019-04-19Add implementations of last in terms of next_back on a bunch of DoubleEndedIt...Kyle Huey-0/+4
2019-04-14Rollup merge of #59852 - alexcrichton:more-vectored, r=sfacklerMazdak Farrokhzad-2/+18
2019-04-10std: Add `{read,write}_vectored` for more typesAlex Crichton-2/+18
2019-04-10Eliminate `FnBox` usages from libstd.CrLF0710-2/+1
2019-03-31libstd: deny(elided_lifetimes_in_paths)Mazdak Farrokhzad-13/+13
2019-03-26Rollup merge of #59374 - faern:simplify-checked-duration-since, r=shepmasterMazdak Farrokhzad-2/+2
2019-03-22Update sys::time impls to have checked_sub_instantLinus Färnstrand-2/+2
2019-03-22Auto merge of #59370 - Centril:rollup, r=Centrilbors-0/+4
2019-03-22Rollup merge of #59106 - LinusU:udp-peer-addr, r=kennytmMazdak Farrokhzad-0/+4
2019-03-22Auto merge of #58953 - jethrogb:jb/unify-ffi, r=alexcrichtonbors-181/+2
2019-03-21Unify OsString/OsStr for byte-based implementationsJethro Beekman-181/+2
2019-03-16Add UdpSocket peer_addr implementation for WasmLinus Unnebäck-0/+4
2019-03-16Rollup merge of #58855 - alexcrichton:wasm-multithreaded-alloc, r=fitzgenkennytm-15/+80
2019-03-09Use lifetime contravariance to elide more lifetimes in core+alloc+stdScott McMurray-2/+2
2019-03-05std: Spin for a global malloc lock on wasm32Alex Crichton-15/+80
2019-02-28libstd => 2018Taiki Endo-97/+96
2019-02-26Auto merge of #58357 - sfackler:vectored-io, r=alexcrichtonbors-7/+47
2019-02-23Remove pub(crate) from stderr_rawPaul Dicker-1/+1
2019-02-20Use standard Read/Write traits in sys::stdioPaul Dicker-10/+16
2019-02-20Remove sys::*::Stderr Write implementationPaul Dicker-10/+1
2019-02-13impl Deref/DerefMut for IoVec typesSteven Fackler-3/+3