summaryrefslogtreecommitdiffstats
path: root/client/process_loop.h
Commit message (Collapse)AuthorAgeFilesLines
* mingw32 build: fix signed/unsigned warnings as errorsAlon Levy2010-12-081-2/+2
|
* spicec: add ProcessLoop::on_start_running()Arnon Gilboa2010-10-171-0/+1
|
* Relicense everything from GPL to LGPL 2.1+Alexander Larsson2010-04-131-9/+9
|
* spice client: calling the timers during modal loop in WindowsYonit Halperin2009-11-091-0/+5
|
* spice client: cosmetic changesYonit Halperin2009-11-091-0/+5
|
* spice client: creating a general process loop.Yonit Halperin2009-11-091-0/+233
The process loop is responsible for: 1) waiting for events 2) timers 3) events queue for actions that should be performed in the context of the thread and are pushed from other threads. The benefits: 1) remove duplicity: till now, there was one implementaion of events loop for the channels and another one for the main thread. 2) timers can be executed on each thread and not only on the main thread. 3) events can be pushed to each thread and not only to the main thread. In this commit, only the main thread was modified to use the new process loop.