about summary refs log tree commit diff
path: root/src/libstd/sys_common/gnu
AgeCommit message (Collapse)AuthorLines
2017-01-27Attempt at fixing dead code lintsSegev Finer-1/+1
2017-01-24Make backtraces work on Windows GNU targets again.Segev Finer-1/+16
This is done by adding a function that can return a filename to pass to backtrace_create_state. The filename is obtained in a safe way by first getting the filename, locking the file so it can't be moved, and then getting the filename again and making sure it's the same. See: https://github.com/rust-lang/rust/pull/37359#issuecomment-260123399 Issue: #33985
2016-11-01std: Move sys_common to libstd/sys_commonBrian Anderson-0/+196
Make the directory structure reflect the module structure. I've always found the existing structure confusing.