]> git.meshlink.io Git - catta/blobdiff - avahi-sharp/Client.cs
* make the event loop background again
[catta] / avahi-sharp / Client.cs
index 40ca4119adc917d560913578c34d251aaab2223a..02763d40d67be6357ef00355a39b22e1d13dcfe1 100644 (file)
@@ -271,6 +271,7 @@ namespace Avahi
                 throw new ClientException (error);
 
             thread = new Thread (PollLoop);
+            thread.IsBackground = true;
             thread.Start ();
         }
 
@@ -287,9 +288,12 @@ namespace Avahi
             if (handle != IntPtr.Zero) {
                 lock (this) {
                     avahi_client_free (handle);
+                    handle = IntPtr.Zero;
+
                     avahi_simple_poll_quit (spoll);
+                    Monitor.Wait (this);
+                    
                     avahi_simple_poll_free (spoll);
-                    handle = IntPtr.Zero;
                 }
             }
         }
@@ -371,6 +375,7 @@ namespace Avahi
             try {
                 lock (this) {
                     avahi_simple_poll_loop (spoll);
+                    Monitor.Pulse (this);
                 }
             } catch (Exception e) {
                 Console.Error.WriteLine ("Error in avahi-sharp event loop: " + e);