Module Name: src Committed By: wiz Date: Mon May 9 13:27:24 UTC 2022
Modified Files: src/sys/sys: proc.h Log Message: fix typo in comment To generate a diff of this commit: cvs rdiff -u -r1.369 -r1.370 src/sys/sys/proc.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/proc.h diff -u src/sys/sys/proc.h:1.369 src/sys/sys/proc.h:1.370 --- src/sys/sys/proc.h:1.369 Sun Oct 10 18:07:51 2021 +++ src/sys/sys/proc.h Mon May 9 13:27:24 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: proc.h,v 1.369 2021/10/10 18:07:51 thorpej Exp $ */ +/* $NetBSD: proc.h,v 1.370 2022/05/09 13:27:24 wiz Exp $ */ /*- * Copyright (c) 2006, 2007, 2008, 2020 The NetBSD Foundation, Inc. @@ -565,7 +565,7 @@ int proc_compare(const struct proc *, co /* * Special handlers for delivering EVFILT_PROC notifications. These * exist to handle some of the special locking considerations around - * proesses. + * processes. */ void knote_proc_exec(struct proc *); void knote_proc_fork(struct proc *, struct proc *);