Module Name: src
Committed By: christos
Date: Wed Jan 25 15:51:24 UTC 2012
Modified Files:
src/sys/kern: uipc_syscalls.c
Log Message:
need <sys/atomic.h>
To generate a diff of this commit:
cvs rdiff -u -r1.152 -r1.153 src/sys/kern/uipc_syscalls.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/uipc_syscalls.c
diff -u src/sys/kern/uipc_syscalls.c:1.152 src/sys/kern/uipc_syscalls.c:1.153
--- src/sys/kern/uipc_syscalls.c:1.152 Wed Jan 25 09:04:09 2012
+++ src/sys/kern/uipc_syscalls.c Wed Jan 25 10:51:24 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: uipc_syscalls.c,v 1.152 2012/01/25 14:04:09 christos Exp $ */
+/* $NetBSD: uipc_syscalls.c,v 1.153 2012/01/25 15:51:24 christos Exp $ */
/*-
* Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -61,7 +61,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uipc_syscalls.c,v 1.152 2012/01/25 14:04:09 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uipc_syscalls.c,v 1.153 2012/01/25 15:51:24 christos Exp $");
#include "opt_pipe.h"
@@ -80,6 +80,7 @@ __KERNEL_RCSID(0, "$NetBSD: uipc_syscall
#include <sys/un.h>
#include <sys/ktrace.h>
#include <sys/event.h>
+#include <sys/atomic.h>
#include <sys/kauth.h>
#include <sys/mount.h>