Skip to content
Features
Business
Explore
Marketplace
Pricing
This repository
Sign in
or
Sign up
Watch
77
Star
616
Fork
165
jackaudio
/
jack2
Code
Issues
112
Pull requests
14
Projects
0
Insights
Permalink
Browse files
Fix for KillServer.
Loading branch information
...
1 parent
2e6344a
commit
dd97d191240de8d09e709f6b1a8c4fafdac0a030
sletz
committed
Jun 6, 2014
Unified
Split
Showing
1 changed file
with
4 additions
and
0 deletions
.
+4
−0
common/JackTools.cpp
Show comments
View
4
common/JackTools.cpp
@@ -37,7 +37,11 @@ namespace Jack {
void
JackTools::KillServer
()
{
+ #
ifdef
WIN32
raise
(SIGINT);
+ #
else
+
kill
(
GetPID
(), SIGINT);
+ #
endif
}
void
JackTools::ThrowJackNetException
()
Toggle all file notes
0 comments on commit
dd97d19
Please
sign in
to comment.
You can't perform that action at this time.
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
0 comments on commit
dd97d19