diff options
author | kmacy <kmacy@FreeBSD.org> | 2008-08-20 02:42:08 +0000 |
---|---|---|
committer | kmacy <kmacy@FreeBSD.org> | 2008-08-20 02:42:08 +0000 |
commit | b1f7c9438e991443a8401dde292a156179cce253 (patch) | |
tree | 36f42b18df70566f008c69a0814f94f7923c0405 /sys/xen/xenbus/xenbus_dev.c | |
parent | 03a5241ea0a9d2648fc3b74a2062c7c06a155381 (diff) | |
download | FreeBSD-src-b1f7c9438e991443a8401dde292a156179cce253.zip FreeBSD-src-b1f7c9438e991443a8401dde292a156179cce253.tar.gz |
Xen 3.2 now interleaves watch events with regular message notifications.
More graciously handle processing messages and watch events inline prior
to threads being up and running.
MFC after: 1 month
Diffstat (limited to 'sys/xen/xenbus/xenbus_dev.c')
-rw-r--r-- | sys/xen/xenbus/xenbus_dev.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/xen/xenbus/xenbus_dev.c b/sys/xen/xenbus/xenbus_dev.c index 3eb6408..8a13322 100644 --- a/sys/xen/xenbus/xenbus_dev.c +++ b/sys/xen/xenbus/xenbus_dev.c @@ -58,8 +58,6 @@ __FBSDID("$FreeBSD$"); #define BUG_ON PANIC_IF #define semaphore sema #define rw_semaphore sema -#define spin_lock mtx_lock -#define spin_unlock mtx_unlock #define DEFINE_SPINLOCK(lock) struct mtx lock #define DECLARE_MUTEX(lock) struct sema lock #define u32 uint32_t |