aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains/RealTimeGraphEx
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-02-01 17:45:53 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-02-01 17:45:53 +0200
commitc43439d0c4b7f4434eaf277c0f60c5e3c0494ac2 (patch)
tree62988fdea921b80df2ab45e78b18cc24a2e10fdd /Software/Visual_Studio/SideChains/RealTimeGraphEx
parenteb2c264422b98458979bc96504ce8830a527d48c (diff)
downloadTango-c43439d0c4b7f4434eaf277c0f60c5e3c0494ac2.tar.gz
Tango-c43439d0c4b7f4434eaf277c0f60c5e3c0494ac2.zip
Removed Shlomo PMR Messages.
Diffstat (limited to 'Software/Visual_Studio/SideChains/RealTimeGraphEx')
-rw-r--r--Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs b/Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs
index c1ed37474..70ce3881f 100644
--- a/Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs
+++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs
@@ -1348,7 +1348,11 @@ namespace RealTimeGraphEx
{
if (pushThread != null)
{
- pushThread.Abort();
+ try
+ {
+ pushThread.Abort();
+ }
+ catch { }
}
}