| author | |
| committer | |
| log | 1ca49b92c650e9b8988a35983e202cdb9c7ba6e7 |
| tree | fec11ff774447f14de5772272c5d35e3d28cbcd5 |
| parent | 776bfb0ee6ccd3c8f4b15834c3c40e5f5d731f79 |
copied from lib/libc/include/generic-musl/sys/stat.h1 files changed, 3 insertions(+), 0 deletions(-)
lib/std/os/bits/linux.zig+3| ... | @@ -775,6 +775,9 @@ pub fn S_ISSOCK(m: u32) bool { | ... | @@ -775,6 +775,9 @@ pub fn S_ISSOCK(m: u32) bool { |
| 775 | return m & S_IFMT == S_IFSOCK; | 775 | return m & S_IFMT == S_IFSOCK; |
| 776 | } | 776 | } |
| 777 | 777 | ||
| 778 | pub const UTIME_NOW = 0x3fffffff; | ||
| 779 | pub const UTIME_OMIT = 0x3ffffffe; | ||
| 780 | |||
| 778 | pub const TFD_NONBLOCK = O_NONBLOCK; | 781 | pub const TFD_NONBLOCK = O_NONBLOCK; |
| 779 | pub const TFD_CLOEXEC = O_CLOEXEC; | 782 | pub const TFD_CLOEXEC = O_CLOEXEC; |
| 780 | 783 |