Improve speed of Windows client
This calls on each mainloop cylce select.select() instead of every 20 ms.
This commit is contained in:
parent
b2269924af
commit
45e3139bd0
1 changed files with 13 additions and 8 deletions
|
@ -2342,10 +2342,14 @@ class Interface:
|
||||||
# Otherwise, an exception will stop our loop
|
# Otherwise, an exception will stop our loop
|
||||||
|
|
||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
timeout, in_seconds = 20, None
|
# On Windows process() calls select.select(), so we need this
|
||||||
else:
|
# executed on each mainloop cycle
|
||||||
timeout, in_seconds = app.idlequeue.PROCESS_TIMEOUT
|
# On Linux only timeouts are checked in process(), so we use
|
||||||
|
# a timeout
|
||||||
|
GLib.idle_add(self.process_connections)
|
||||||
|
raise
|
||||||
|
|
||||||
|
timeout, in_seconds = app.idlequeue.PROCESS_TIMEOUT
|
||||||
if in_seconds:
|
if in_seconds:
|
||||||
GLib.timeout_add_seconds(timeout, self.process_connections)
|
GLib.timeout_add_seconds(timeout, self.process_connections)
|
||||||
else:
|
else:
|
||||||
|
@ -2632,15 +2636,16 @@ class Interface:
|
||||||
self.instances['file_transfers'] = dialogs.FileTransfersWindow()
|
self.instances['file_transfers'] = dialogs.FileTransfersWindow()
|
||||||
|
|
||||||
GLib.timeout_add(100, self.autoconnect)
|
GLib.timeout_add(100, self.autoconnect)
|
||||||
|
|
||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
timeout, in_seconds = 20, None
|
GLib.idle_add(self.process_connections)
|
||||||
else:
|
else:
|
||||||
timeout, in_seconds = app.idlequeue.PROCESS_TIMEOUT
|
timeout, in_seconds = app.idlequeue.PROCESS_TIMEOUT
|
||||||
|
|
||||||
if in_seconds:
|
if in_seconds:
|
||||||
GLib.timeout_add_seconds(timeout, self.process_connections)
|
GLib.timeout_add_seconds(timeout, self.process_connections)
|
||||||
else:
|
else:
|
||||||
GLib.timeout_add(timeout, self.process_connections)
|
GLib.timeout_add(self.process_connections)
|
||||||
|
|
||||||
GLib.timeout_add_seconds(app.config.get(
|
GLib.timeout_add_seconds(app.config.get(
|
||||||
'check_idle_every_foo_seconds'), self.read_sleepy)
|
'check_idle_every_foo_seconds'), self.read_sleepy)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue