Module Name: src Committed By: kamil Date: Sat Feb 23 12:07:40 UTC 2019
Modified Files: src/sys/kern: subr_kcov.c Log Message: Stop including <sys/atomic.h> in KCOV This header is not needed. Noted by <martin> To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/kern/subr_kcov.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/kern/subr_kcov.c diff -u src/sys/kern/subr_kcov.c:1.2 src/sys/kern/subr_kcov.c:1.3 --- src/sys/kern/subr_kcov.c:1.2 Sat Feb 23 12:03:07 2019 +++ src/sys/kern/subr_kcov.c Sat Feb 23 12:07:40 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: subr_kcov.c,v 1.2 2019/02/23 12:03:07 kamil Exp $ */ +/* $NetBSD: subr_kcov.c,v 1.3 2019/02/23 12:07:40 kamil Exp $ */ /* * Copyright (c) 2019 The NetBSD Foundation, Inc. @@ -36,7 +36,6 @@ #include <sys/systm.h> #include <sys/kernel.h> -#include <sys/atomic.h> #include <sys/conf.h> #include <sys/condvar.h> #include <sys/kmem.h>