summary refs log tree commit diff
path: root/src/libstd/sys/redox/backtrace
AgeCommit message (Collapse)AuthorLines
2018-01-26Print inlined functions on WindowsJohn Kåre Alsaker-0/+1
2017-11-09std: Avoid use of `libc` in portable modulesAlex Crichton-2/+2
This commit removes usage of the `libc` crate in "portable" modules like those at the top level and `sys_common`. Instead common types like `*mut u8` or `u32` are used instead of `*mut c_void` or `c_int` as well as switching to platform-specific functions like `sys::strlen` instead of `libc::strlen`.
2017-08-03Simplify Redox backtrace/ to not include non-Redox implementationsIan Douglas Scott-207/+3
2017-08-03Make backtraces work on Redox, copying Unix implementationIan Douglas Scott-0/+363