Module Name:    src
Committed By:   skrll
Date:           Sat Dec 18 14:01:43 UTC 2010

Modified Files:
        src/sys/rump/librump/rumpkern: sleepq.c

Log Message:
Pull in sys/atomic.h so that hp700 can build - needed for membar_exit.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/rump/librump/rumpkern/sleepq.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/sleepq.c
diff -u src/sys/rump/librump/rumpkern/sleepq.c:1.9 src/sys/rump/librump/rumpkern/sleepq.c:1.10
--- src/sys/rump/librump/rumpkern/sleepq.c:1.9	Sat Dec 18 01:36:20 2010
+++ src/sys/rump/librump/rumpkern/sleepq.c	Sat Dec 18 14:01:43 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: sleepq.c,v 1.9 2010/12/18 01:36:20 rmind Exp $	*/
+/*	$NetBSD: sleepq.c,v 1.10 2010/12/18 14:01:43 skrll Exp $	*/
 
 /*
  * Copyright (c) 2008 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sleepq.c,v 1.9 2010/12/18 01:36:20 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sleepq.c,v 1.10 2010/12/18 14:01:43 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/condvar.h>
@@ -35,6 +35,7 @@
 #include <sys/queue.h>
 #include <sys/sleepq.h>
 #include <sys/syncobj.h>
+#include <sys/atomic.h>
 
 #include "rump_private.h"
 

Reply via email to