Module Name:    src
Committed By:   kamil
Date:           Wed Mar  1 00:19:23 UTC 2017

Modified Files:
        src/sys/sys: siginfo.h

Log Message:
Add new SIGTRAP types: TRAP_SCE and TRAP_SCX

New entries:
 - TRAP_SCE        7       /* Process syscall entry trap           */
 - TRAP_SCX        8       /* Process syscall exit trap            */

Sponsored by <The NetBSD Foundation>


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/sys/sys/siginfo.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/siginfo.h
diff -u src/sys/sys/siginfo.h:1.31 src/sys/sys/siginfo.h:1.32
--- src/sys/sys/siginfo.h:1.31	Fri Feb 17 01:49:24 2017
+++ src/sys/sys/siginfo.h	Wed Mar  1 00:19:22 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: siginfo.h,v 1.31 2017/02/17 01:49:24 kamil Exp $	 */
+/*	$NetBSD: siginfo.h,v 1.32 2017/03/01 00:19:22 kamil Exp $	 */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -214,6 +214,8 @@ typedef union siginfo {
 #define	TRAP_CHLD	4	/* Process child trap			*/
 #define	TRAP_LWP	5	/* Process lwp trap			*/
 #define	TRAP_DBREG	6	/* Process hardware debug register trap	*/
+#define	TRAP_SCE	7	/* Process syscall entry trap		*/
+#define	TRAP_SCX	8	/* Process syscall exit trap		*/
 
 /* SIGCHLD */
 #define	CLD_EXITED	1	/* Child has exited			*/

Reply via email to