This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Minor NamedPipe tweak.
tags/2021-05-28
jules
13 years ago
parent
9c129d1778
commit
bfcc0dd7a5
2 changed files
with
1 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
modules/juce_core/native/juce_posix_NamedPipe.cpp
+0
-3
modules/juce_events/interprocess/juce_InterprocessConnection.cpp
+ 1
- 0
modules/juce_core/native/juce_posix_NamedPipe.cpp
View File
@@ -169,6 +169,7 @@ void NamedPipe::cancelPendingReads()
void NamedPipe::close()
{
cancelPendingReads();
ScopedPointer<Pimpl> deleter (pimpl); // (clears the pimpl member variable before deleting it)
}
+ 0
- 3
modules/juce_events/interprocess/juce_InterprocessConnection.cpp
View File
@@ -106,10 +106,7 @@ void InterprocessConnection::disconnect()
socket->close();
if (pipe != nullptr)
{
pipe->cancelPendingReads();
pipe->close();
}
stopThread (4000);
Write
Preview
Loading…
Cancel
Save