From 47ea6a0c3016d045488a32e918b1f2adee1524fb Mon Sep 17 00:00:00 2001 From: Spencer Russell Date: Fri, 19 May 2017 01:10:19 -0400 Subject: [PATCH] adds TestSetExtensions to test/REQUIRE --- src/PortAudio.jl | 4 +--- test/REQUIRE | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/PortAudio.jl b/src/PortAudio.jl index cb3974b..c301b77 100644 --- a/src/PortAudio.jl +++ b/src/PortAudio.jl @@ -6,8 +6,6 @@ using SampledSignals using RingBuffers #using Suppressor -using Base: AsyncCondition - import Base: eltype, show import Base: close, isopen import Base: read, read!, write, flush @@ -350,7 +348,7 @@ end # this is called by the shim process callback to notify that there is new data. # it's run in the audio context so don't do anything besides wake up the -# AsyncCondition +# AsyncCondition handle associated with that ring buffer notifycb(handle) = ccall(:uv_async_send, Cint, (Ptr{Void}, ), handle) end # module PortAudio diff --git a/test/REQUIRE b/test/REQUIRE index 94e516f..557b023 100644 --- a/test/REQUIRE +++ b/test/REQUIRE @@ -1 +1 @@ -BaseTestNext +TestSetExtensions