Module Name: src
Committed By: skrll
Date: Thu Apr 30 15:30:55 UTC 2009
Modified Files:
src/sys/rump/librump/rumpkern: sysproxy_socket.c
Log Message:
+#include <sys/atomic.h>
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/rump/librump/rumpkern/sysproxy_socket.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/rump/librump/rumpkern/sysproxy_socket.c
diff -u src/sys/rump/librump/rumpkern/sysproxy_socket.c:1.1 src/sys/rump/librump/rumpkern/sysproxy_socket.c:1.2
--- src/sys/rump/librump/rumpkern/sysproxy_socket.c:1.1 Wed Apr 29 17:51:47 2009
+++ src/sys/rump/librump/rumpkern/sysproxy_socket.c Thu Apr 30 15:30:55 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: sysproxy_socket.c,v 1.1 2009/04/29 17:51:47 pooka Exp $ */
+/* $NetBSD: sysproxy_socket.c,v 1.2 2009/04/30 15:30:55 skrll Exp $ */
/*
* Copyright (c) 2009 Antti Kantee. All Rights Reserved.
@@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sysproxy_socket.c,v 1.1 2009/04/29 17:51:47 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sysproxy_socket.c,v 1.2 2009/04/30 15:30:55 skrll Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
@@ -36,6 +36,7 @@
#include <sys/kthread.h>
#include <sys/queue.h>
#include <sys/syscall.h>
+#include <sys/atomic.h>
#include <rump/rump.h>
#include <rump/rumpuser.h>