summaryrefslogtreecommitdiff
path: root/usrp2/host/lib/control.h
diff options
context:
space:
mode:
authorJohnathan Corgan2010-04-11 13:30:45 -0700
committerJohnathan Corgan2010-04-11 13:30:45 -0700
commit290fc2315a6b7f2d2bc6b98318783e3278a97453 (patch)
tree9cbc354baaeb7a6ce50e97718903d221ada1d194 /usrp2/host/lib/control.h
parent1ae689ff9238dcffbf65881b8ca03aa8df3844aa (diff)
downloadgnuradio-290fc2315a6b7f2d2bc6b98318783e3278a97453.tar.gz
gnuradio-290fc2315a6b7f2d2bc6b98318783e3278a97453.tar.bz2
gnuradio-290fc2315a6b7f2d2bc6b98318783e3278a97453.zip
Removed omnithreads dependency from libusrp2
Diffstat (limited to 'usrp2/host/lib/control.h')
-rw-r--r--usrp2/host/lib/control.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/usrp2/host/lib/control.h b/usrp2/host/lib/control.h
index 46ce791ea..3515ba10f 100644
--- a/usrp2/host/lib/control.h
+++ b/usrp2/host/lib/control.h
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2008,2009 Free Software Foundation, Inc.
+ * Copyright 2008,2009,2010 Free Software Foundation, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -19,7 +19,7 @@
#ifndef INCLUDED_CONTROL_H
#define INCLUDED_CONTROL_H
-#include <gnuradio/omnithread.h>
+#include <gruel/thread.h>
#include <usrp2_eth_packet.h>
namespace usrp2 {
@@ -130,8 +130,8 @@ namespace usrp2 {
size_t d_len;
// d_mutex is used with d_cond and also protects d_complete
- omni_mutex d_mutex;
- omni_condition d_cond;
+ gruel::mutex d_mutex;
+ gruel::condition_variable d_cond;
bool d_complete;
public: