Module Name: src
Committed By: snj
Date: Wed Nov 29 20:15:21 UTC 2017
Modified Files:
src/sys/sys: spawn.h
Log Message:
fix typo in comment
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/sys/spawn.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/spawn.h
diff -u src/sys/sys/spawn.h:1.5 src/sys/sys/spawn.h:1.6
--- src/sys/sys/spawn.h:1.5 Fri Sep 5 05:46:54 2014
+++ src/sys/sys/spawn.h Wed Nov 29 20:15:21 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: spawn.h,v 1.5 2014/09/05 05:46:54 matt Exp $ */
+/* $NetBSD: spawn.h,v 1.6 2017/11/29 20:15:21 snj Exp $ */
/*-
* Copyright (c) 2008 Ed Schouten <[email protected]>
@@ -90,7 +90,7 @@ typedef struct posix_spawn_file_actions
* maximize parallelism, but instead the parent will wait for the child
* process to complete all file/scheduler actions and report back errors
* from that via the return value of the posix_spawn syscall. This is
- * usefull for testing, as it can verify the generated error codes and
+ * useful for testing, as it can verify the generated error codes and
* match to the supposedly triggered failures.
* In general, the kernel will return from the posix_spawn syscall as
* early as possible, as soon as creating the new process is known to