| author | |
| committer | |
| log | 0b93932a2103b178d3ab5235c837df14173ed38c |
| tree | 3a627d0db186490b156216939be9e30757151da8 |
| parent | 5b278fb60615751bef5e521a613e8798d783dd26 |
2 files changed, 6 insertions(+), 0 deletions(-)
lib/std/os/bits/freebsd.zig+3| ... | ... | @@ -325,6 +325,9 @@ pub const O_WRONLY = 0x0001; |
| 325 | 325 | pub const O_RDWR = 0x0002; |
| 326 | 326 | pub const O_ACCMODE = 0x0003; |
| 327 | 327 | |
| 328 | pub const O_SHLOCK = 0x0010; | |
| 329 | pub const O_EXLOCK = 0x0020; | |
| 330 | ||
| 328 | 331 | pub const O_CREAT = 0x0200; |
| 329 | 332 | pub const O_EXCL = 0x0800; |
| 330 | 333 | pub const O_NOCTTY = 0x8000; |
lib/std/os/bits/netbsd.zig+3| ... | ... | @@ -287,6 +287,9 @@ pub const O_WRONLY = 0x0001; |
| 287 | 287 | pub const O_RDWR = 0x0002; |
| 288 | 288 | pub const O_ACCMODE = 0x0003; |
| 289 | 289 | |
| 290 | pub const O_SHLOCK = 0x0010; | |
| 291 | pub const O_EXLOCK = 0x0020; | |
| 292 | ||
| 290 | 293 | pub const O_CREAT = 0x0200; |
| 291 | 294 | pub const O_EXCL = 0x0800; |
| 292 | 295 | pub const O_NOCTTY = 0x8000; |