diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-04-02 14:21:45 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-04-02 20:10:07 +0200 |
| commit | 3e679c51c03ac13a5b4b601873689925eda3cc16 (patch) | |
| tree | cc4d32d731ff4eca66ae2af36d3bd229b8f08a4d /sys/linux/socket_unix_arm.const | |
| parent | 374050e90404a9eeea577d7c97fbc6ef0dacd478 (diff) | |
pkg/compiler: support non-zero terminated filenames
Now file names become:
string[filename]
with a possibility of using other string features:
stringnoz[filename]
string[filename, CONST_SIZE]
and filename is left as type alias as it is commonly used:
type filename string[filename]
Diffstat (limited to 'sys/linux/socket_unix_arm.const')
| -rw-r--r-- | sys/linux/socket_unix_arm.const | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/linux/socket_unix_arm.const b/sys/linux/socket_unix_arm.const index 962f502f0..8a724638d 100644 --- a/sys/linux/socket_unix_arm.const +++ b/sys/linux/socket_unix_arm.const @@ -7,6 +7,7 @@ SOCK_DGRAM = 2 SOCK_SEQPACKET = 5 SOCK_STREAM = 1 SOL_SOCKET = 1 +UNIX_PATH_MAX = 108 __NR_accept = 285 __NR_accept4 = 366 __NR_bind = 282 |
