Module Name: src
Committed By: christos
Date: Mon Jul 10 02:33:04 UTC 2023
Modified Files:
src/sys/kern: syscalls.master
Log Message:
Add memfd_create(2) from GSoC 2023 by Theodore Preduta
To generate a diff of this commit:
cvs rdiff -u -r1.309 -r1.310 src/sys/kern/syscalls.master
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/kern/syscalls.master
diff -u src/sys/kern/syscalls.master:1.309 src/sys/kern/syscalls.master:1.310
--- src/sys/kern/syscalls.master:1.309 Mon Nov 1 01:07:17 2021
+++ src/sys/kern/syscalls.master Sun Jul 9 22:33:04 2023
@@ -1,4 +1,4 @@
- $NetBSD: syscalls.master,v 1.309 2021/11/01 05:07:17 thorpej Exp $
+ $NetBSD: syscalls.master,v 1.310 2023/07/10 02:33:04 christos Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -1049,3 +1049,5 @@
498 STD { int|sys||__acl_aclcheck_fd(int filedes, \
acl_type_t type, struct acl *aclp); }
499 STD RUMP { long|sys||lpathconf(const char *path, int name); }
+500 STD { int|sys||memfd_create(const char *name, \
+ unsigned int flags); }