rust/library/std/src/sys
Matthias Krüger 10018d8e10
Rollup merge of #137165 - thaliaarchi:file-tell, r=ChrisDenton
Use `tell` for `<File as Seek>::stream_position`

Some platforms have a more efficient way to get the current offset of the file than by seeking. For example, Wasi has `fd_tell` and SOLID has `SOLID_FS_Ftell`. Implement `<File as Seek>::stream_position()` in terms of those.

I do not use any APIs that were not already used in `std`. Although, the `libc` crate has [`ftell`](https://docs.rs/libc/latest/libc/fn.ftell.html), [`ftello`](https://docs.rs/libc/latest/libc/fn.ftello.html), and [`ftello64`](https://docs.rs/libc/latest/libc/fn.ftello64.html), I do not know platform coverage. It appears that Windows has no `tell`-like API.

I have checked that it builds on each relevant platform.
2025-02-17 17:06:10 +01:00
..
alloc std: Apply unsafe_attr_outside_unsafe 2025-02-13 13:10:27 -08:00
anonymous_pipe Move std::pipe::* into std::io 2025-01-17 01:30:05 +11:00
io std: get rid of sys_common::io 2025-02-07 16:54:07 +01:00
net Rollup merge of #136844 - thaliaarchi:const-io-error, r=ChrisDenton 2025-02-17 06:37:37 +01:00
os_str Make CloneToUninit dyn-compatible 2024-11-12 15:08:41 -06:00
pal Rollup merge of #137165 - thaliaarchi:file-tell, r=ChrisDenton 2025-02-17 17:06:10 +01:00
path uefi: Implement path 2025-01-16 10:19:22 +05:30
personality Mark extern blocks as unsafe 2025-02-09 17:11:13 +00:00
random Mark extern blocks as unsafe 2025-02-09 17:11:13 +00:00
sync Mark extern blocks as unsafe 2025-02-09 17:11:13 +00:00
thread_local std: Apply unsafe_attr_outside_unsafe 2025-02-13 13:10:27 -08:00
backtrace.rs Improve comments for the default backtrace printer 2024-12-04 20:54:37 -05:00
cmath.rs Implement f{16,32,64,128}::{erf,erfc} 2025-02-14 01:23:16 +03:00
exit_guard.rs Attempt to fix CI 2024-07-08 09:19:25 -05:00
mod.rs std: move io module out of pal 2025-02-07 16:54:07 +01:00