svn commit: r352705 - in head/sys: compat/freebsd32 kern

Kyle Evans kevans at FreeBSD.org
Wed Sep 25 18:06:49 UTC 2019


Author: kevans
Date: Wed Sep 25 18:06:48 2019
New Revision: 352705
URL: https://svnweb.freebsd.org/changeset/base/352705

Log:
  Mark shm_open(2) as COMPAT12, succeeded by shm_open2
  
  Implementation and regenerated files will follow.

Modified:
  head/sys/compat/freebsd32/syscalls.master
  head/sys/kern/syscalls.master

Modified: head/sys/compat/freebsd32/syscalls.master
==============================================================================
--- head/sys/compat/freebsd32/syscalls.master	Wed Sep 25 18:04:09 2019	(r352704)
+++ head/sys/compat/freebsd32/syscalls.master	Wed Sep 25 18:06:48 2019	(r352705)
@@ -910,8 +910,8 @@
 				    uint32_t length1, uint32_t length2); }
 #endif
 481	AUE_THR_KILL2	NOPROTO	{ int thr_kill2(pid_t pid, long id, int sig); }
-482	AUE_SHMOPEN	NOPROTO	{ int shm_open(const char *path, int flags, \
-				    mode_t mode); }
+482	AUE_SHMOPEN	COMPAT12|NOPROTO	{ int shm_open(const char *path,
+				    int flags, mode_t mode); }
 483	AUE_SHMUNLINK	NOPROTO	{ int shm_unlink(const char *path); }
 484	AUE_NULL	NOPROTO	{ int cpuset(cpusetid_t *setid); }
 #ifdef PAD64_REQUIRED

Modified: head/sys/kern/syscalls.master
==============================================================================
--- head/sys/kern/syscalls.master	Wed Sep 25 18:04:09 2019	(r352704)
+++ head/sys/kern/syscalls.master	Wed Sep 25 18:06:48 2019	(r352705)
@@ -2579,7 +2579,7 @@
 		    int sig
 		);
 	}
-482	AUE_SHMOPEN	STD {
+482	AUE_SHMOPEN	COMPAT12 {
 		int shm_open(
 		    _In_z_ const char *path,
 		    int flags,


More information about the svn-src-head mailing list