Expose OFlags::LARGEFILE#1020
Conversation
b32f75e to
46cae06
Compare
|
Rustix's current design is to transparently always set |
The motivation is to define it, so users can use it when they really want (when you are writing a FUSE server that process users' LARGEFILE flag, or if the user is rustix itself), and they can see its existence from |
|
Thinking about this more, I think you're right. We should add |
This flag can be reported by `fcntl_getfl` but is ignored currently. It is also used in FUSE requests. But typical users do not need to care about it since it will be added automatically by rustix and/or libc on relevent calls.
46cae06 to
83131ef
Compare
Added. |
|
Thanks! |
This flag can be reported by
fcntl_getflbut is ignored currently. It is also used in FUSE requests. This should also simplify tests, but I don't haveillumosplatforms to test on.