1
0
mirror of https://github.com/gryf/wicd.git synced 2026-01-09 15:24:14 +01:00

experimental:

- Fix potential deadlock in connection thread
- Make wireless interface blank string if set to None in config.
This commit is contained in:
imdano
2008-09-19 16:28:26 +00:00
parent 890b5ee16a
commit ccbd6ad392
2 changed files with 8 additions and 6 deletions

View File

@@ -227,9 +227,12 @@ class ConnectThread(threading.Thread):
def set_should_die(self, val):
self.lock.acquire()
self._should_die = val
try:
self._should_die = val
finally:
self.lock.release()
should_die = property(should_die, get_should_die, set_should_die)
should_die = property(get_should_die, set_should_die)
def SetStatus(self, status):
@@ -352,7 +355,7 @@ class ConnectThread(threading.Thread):
"""
if self.abort_reason:
reason = self.abort_reason
self.SetStatus(reason)
self.connecting_message = reason
self.is_aborted = True
self.abort_msg = reason
self.is_connecting = False
@@ -381,7 +384,6 @@ class ConnectThread(threading.Thread):
try:
if self._should_die:
self.connect_aborted('aborted')
self.lock.release()
thread.exit()
finally:
self.lock.release()

View File

@@ -140,8 +140,8 @@ class WicdDaemon(dbus.service.Object):
def SetWirelessInterface(self, interface):
""" Sets the wireless interface the daemon will use. """
print "setting wireless interface %s" % (str(interface))
self.wifi.wireless_interface = interface
self.wired.wireless_interface = interface
self.wifi.wireless_interface = noneToBlankString(interface)
self.wired.wireless_interface = noneToBlankString(interface)
self.config.set("Settings", "wireless_interface", interface, True)
@dbus.service.method('org.wicd.daemon')