From e5dac73f76ab0bb242594cab9c02be2107e34a9f Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 7 Feb 2014 16:15:45 +0100 Subject: UHD output: remove compilation warning --- src/OutputUHD.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/OutputUHD.cpp') diff --git a/src/OutputUHD.cpp b/src/OutputUHD.cpp index 18cb55e..462bf94 100644 --- a/src/OutputUHD.cpp +++ b/src/OutputUHD.cpp @@ -173,7 +173,7 @@ OutputUHD::OutputUHD( first_run = true; shared_ptr b(new barrier(2)); - my_sync_barrier = b; + mySyncBarrier = b; uwd.sync_barrier = b; worker.start(&uwd); @@ -234,7 +234,7 @@ int OutputUHD::process(Buffer* dataIn, Buffer* dataOut) throw std::runtime_error("Non-constant input length!"); } //fprintf(stderr, "OutUHD.process:Waiting for barrier\n"); - my_sync_barrier.get()->wait(); + mySyncBarrier.get()->wait(); // write into the our buffer while // the worker sends the other. @@ -262,7 +262,7 @@ int OutputUHD::process(Buffer* dataIn, Buffer* dataOut) } -void UHDWorker::process(struct UHDWorkerData *uwd) +void UHDWorker::process() { int workerbuffer = 0; time_t tx_second = 0; -- cgit v1.2.3