Changes between Version 3 and Version 4 of Ticket #83
- Timestamp:
- 02/09/10 14:29:03 (15 years ago)
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 .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, see [http://twistedmatrix.com/documents/current/core/howto/process.html here] 2 2 3 3 Also, 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.