about summary refs log tree commit diff
path: root/library/std/src/sys/sgx/abi/mod.rs
AgeCommit message (Collapse)AuthorLines
2024-01-11std: begin moving platform support modules into `pal`joboet-108/+0
2022-03-10Use implicit capture syntax in format_argsT-O-R-U-S-1/+1
This updates the standard library's documentation to use the new syntax. The documentation is worthwhile to update as it should be more idiomatic (particularly for features like this, which are nice for users to get acquainted with). The general codebase is likely more hassle than benefit to update: it'll hurt git blame, and generally updates can be done by folks updating the code if (and when) that makes things more readable with the new format. A few places in the compiler and library code are updated (mostly just due to already having been done when this commit was first authored).
2021-12-12Stabilize asm! and global_asm!Amanieu d'Antras-0/+1
They are also removed from the prelude as per the decision in https://github.com/rust-lang/rust/issues/87228. stdarch and compiler-builtins are updated to work with the new, stable asm! and global_asm! macros.
2021-05-13Add support for const operands and options to global_asm!Amanieu d'Antras-1/+1
On x86, the default syntax is also switched to Intel to match asm!
2021-04-21Ensure TLS destructors run before thread joins in SGXMohsen Zohrevandi-2/+4
2020-12-22Migrate standard library away from compare_and_swapLinus Färnstrand-4/+4
2020-10-08`#[deny(unsafe_op_in_unsafe_fn)]` in sys/sgxCaduser2020-1/+1
Run `./x.py` fmt Add reference link Fix reference link Apply review suggestions.
2020-07-27mv std libs to library/mark-0/+105