util/ProcessLogger.py
changeset 1832 0f1081928d65
parent 1831 56b48961cc68
child 1850 614396cbffbf
equal deleted inserted replaced
1831:56b48961cc68 1832:0f1081928d65
    23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    24 
    24 
    25 import os
    25 import os
    26 import sys
    26 import sys
    27 import time
    27 import time
    28 import wx
       
    29 import subprocess
    28 import subprocess
    30 import ctypes
    29 import ctypes
    31 from threading import Timer, Lock, Thread, Semaphore
    30 from threading import Timer, Lock, Thread, Semaphore
       
    31 import wx
    32 if os.name == 'posix':
    32 if os.name == 'posix':
    33     from signal import SIGTERM, SIGKILL
    33     from signal import SIGTERM, SIGKILL
    34 
    34 
    35 
    35 
    36 class outputThread(Thread):
    36 class outputThread(Thread):