Skip to content

Commit

Permalink
unix: add f_flag member flags on z/OS
Browse files Browse the repository at this point in the history
This change adds the constants `ST_RDONLY` and `ST_NOSUID` to a z/OS-specific file.

Change-Id: Ifb78124d93b60a10f10b8169d1bb73dce074e760
GitHub-Last-Rev: 952cf1b
GitHub-Pull-Request: #214
Reviewed-on: https://go-review.googlesource.com/c/sys/+/606877
Reviewed-by: Cherry Mui <cherryyz@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
  • Loading branch information
jlee3227 authored and gopherbot committed Aug 19, 2024
1 parent c64c51d commit a0c72ef
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions unix/zerrors_zos_s390x.go
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,8 @@ const (
AT_EMPTY_PATH = 0x1000
AT_REMOVEDIR = 0x200
RENAME_NOREPLACE = 1 << 0
ST_RDONLY = 1
ST_NOSUID = 2
)

const (
Expand Down

0 comments on commit a0c72ef

Please sign in to comment.