Module Name:    src
Committed By:   njoly
Date:           Tue Jun  2 16:53:07 UTC 2009

Modified Files:
        src/sys/compat/linux/common: linux_sig_notalpha.c

Log Message:
Add the mask value returned by siggetmask.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/sys/compat/linux/common/linux_sig_notalpha.c

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

Modified files:

Index: src/sys/compat/linux/common/linux_sig_notalpha.c
diff -u src/sys/compat/linux/common/linux_sig_notalpha.c:1.38 src/sys/compat/linux/common/linux_sig_notalpha.c:1.39
--- src/sys/compat/linux/common/linux_sig_notalpha.c:1.38	Mon Apr 28 20:23:44 2008
+++ src/sys/compat/linux/common/linux_sig_notalpha.c	Tue Jun  2 16:53:07 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: linux_sig_notalpha.c,v 1.38 2008/04/28 20:23:44 martin Exp $	*/
+/*	$NetBSD: linux_sig_notalpha.c,v 1.39 2009/06/02 16:53:07 njoly Exp $	*/
 
 /*-
  * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sig_notalpha.c,v 1.38 2008/04/28 20:23:44 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sig_notalpha.c,v 1.39 2009/06/02 16:53:07 njoly Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -106,6 +106,7 @@
 	if (error)
 		return (error);
 	native_to_linux_old_sigset(&lss, &bss);
+	*retval = lss;
 	return (0);
 }
 

Reply via email to