Changes between Version 3 and Version 4 of Ticket #83


Ignore:
Timestamp:
02/09/10 14:29:03 (14 years ago)
Author:
Antoine Martin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #83 – Description

    v3 v4  
    1 When starting a process and watching its output, we shouldn't do this in a separate thread but instead integrate the code with twisted main-loop (gtk/glib's actually) using ProcessProtocol.
     1When starting a process and watching its output, we shouldn't do this in a separate thread but instead integrate the code with twisted main-loop (gtk/glib's actually) using ProcessProtocol, see [http://twistedmatrix.com/documents/current/core/howto/process.html here]
    22
    33Also, when waiting for a process by pid (one we may not have launched ourselves), we should use gobject.child_watch_add(pid) which will also integrate with the main loop.