Module Name: src
Committed By: kamil
Date: Sat May 19 05:10:16 UTC 2018
Modified Files:
src/tests/lib/libc/sys: t_fork.c
Log Message:
Reflect reality in the comment
The watcher process is emitting SIGKILL, not SIGTERM.
Sponsored by <The NetBSD Foundation>
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/sys/t_fork.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libc/sys/t_fork.c
diff -u src/tests/lib/libc/sys/t_fork.c:1.2 src/tests/lib/libc/sys/t_fork.c:1.3
--- src/tests/lib/libc/sys/t_fork.c:1.2 Sat May 19 02:42:58 2018
+++ src/tests/lib/libc/sys/t_fork.c Sat May 19 05:10:16 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: t_fork.c,v 1.2 2018/05/19 02:42:58 kamil Exp $ */
+/* $NetBSD: t_fork.c,v 1.3 2018/05/19 05:10:16 kamil Exp $ */
/*-
* Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 2018\
The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: t_fork.c,v 1.2 2018/05/19 02:42:58 kamil Exp $");
+__RCSID("$NetBSD: t_fork.c,v 1.3 2018/05/19 05:10:16 kamil Exp $");
#include <sys/param.h>
#include <sys/types.h>
@@ -141,7 +141,7 @@ raise_raw(int sig)
/*
* Spawn a dedicated thread to watch for a stopped child and emit
- * the SIGTERM signal to it.
+ * the SIGKILL signal to it.
*
* This is required in vfork(2)ing parent and optional in fork(2).
*