summaryrefslogtreecommitdiff
path: root/gr-uhd/lib/gr_uhd_amsg_source.cc
diff options
context:
space:
mode:
authorJohnathan Corgan2012-03-24 10:19:49 -0700
committerJohnathan Corgan2012-03-24 10:19:49 -0700
commite91ae54188e9812f3d8ed45e7f675e5a98ec889f (patch)
tree01cf3aa2954926fa3c01514f322edce9034e9e21 /gr-uhd/lib/gr_uhd_amsg_source.cc
parent7eebbcd5ed9f94904adf99967c928ec736779a4a (diff)
parent87c8751c99cfb2191bea19557d158fdd952c56eb (diff)
downloadgnuradio-e91ae54188e9812f3d8ed45e7f675e5a98ec889f.tar.gz
gnuradio-e91ae54188e9812f3d8ed45e7f675e5a98ec889f.tar.bz2
gnuradio-e91ae54188e9812f3d8ed45e7f675e5a98ec889f.zip
Merge branch 'master' into next
Conflicts: gr-uhd/lib/Makefile.am
Diffstat (limited to 'gr-uhd/lib/gr_uhd_amsg_source.cc')
-rw-r--r--gr-uhd/lib/gr_uhd_amsg_source.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-uhd/lib/gr_uhd_amsg_source.cc b/gr-uhd/lib/gr_uhd_amsg_source.cc
index 08941584b..67e402f6b 100644
--- a/gr-uhd/lib/gr_uhd_amsg_source.cc
+++ b/gr-uhd/lib/gr_uhd_amsg_source.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2011 Free Software Foundation, Inc.
+ * Copyright 2011-2012 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -22,6 +22,7 @@
#include <gr_uhd_amsg_source.h>
#include <boost/bind.hpp>
#include <gruel/thread.h>
+#include "gr_uhd_common.h"
/***********************************************************************
* UHD Asynchronous Message Source Impl
@@ -87,6 +88,7 @@ boost::shared_ptr<uhd_amsg_source> uhd_make_amsg_source(
const uhd::device_addr_t &device_addr,
gr_msg_queue_sptr msgq
){
+ gr_uhd_check_abi();
return boost::shared_ptr<uhd_amsg_source>(
new uhd_amsg_source_impl(device_addr, msgq)
);