Module Name: src
Committed By: pgoyette
Date: Tue Sep 25 01:26:58 UTC 2018
Modified Files:
src/sys/arch/amd64/amd64 [pgoyette-compat]: netbsd32_machdep_16.c
Log Message:
In the xxx_fini() routine we need to _un_set the hook!
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.6 -r1.1.2.7 \
src/sys/arch/amd64/amd64/netbsd32_machdep_16.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/arch/amd64/amd64/netbsd32_machdep_16.c
diff -u src/sys/arch/amd64/amd64/netbsd32_machdep_16.c:1.1.2.6 src/sys/arch/amd64/amd64/netbsd32_machdep_16.c:1.1.2.7
--- src/sys/arch/amd64/amd64/netbsd32_machdep_16.c:1.1.2.6 Tue Sep 25 01:15:27 2018
+++ src/sys/arch/amd64/amd64/netbsd32_machdep_16.c Tue Sep 25 01:26:58 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: netbsd32_machdep_16.c,v 1.1.2.6 2018/09/25 01:15:27 pgoyette Exp $ */
+/* $NetBSD: netbsd32_machdep_16.c,v 1.1.2.7 2018/09/25 01:26:58 pgoyette Exp $ */
/*
* Copyright (c) 2001 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep_16.c,v 1.1.2.6 2018/09/25 01:15:27 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep_16.c,v 1.1.2.7 2018/09/25 01:26:58 pgoyette Exp $");
#ifdef _KERNEL_OPT
#include "opt_compat_netbsd.h"
@@ -259,5 +259,5 @@ void
netbsd32_machdep_md_16_fini(void)
{
- netbsd32_sendsig_hook_set();
+ netbsd32_sendsig_hook_unset();
}