Ticket #47: GC9300_Threads.txt

File GC9300_Threads.txt, 2.0 KB (added by Melanie Hermann, 12 years ago)
Line 
1m_printerThread = MyAfxBeginThread(startPrinterThread, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
2m_threadCan = MyAfxBeginThread(_ThreadFunc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
3m_threadDHCPServer = MyAfxBeginThread(_ListenDhcpMessage, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
4m_threadMbMaster = MyAfxBeginThread(CommThread, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
5m_threadMbSlaveWinCom = MyAfxBeginThread(_ThreadFunc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
6m_threadMbSlaveTcpIp = MyAfxBeginThread(ThreadProc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
7m_threadMbSlaveCan = MyAfxBeginThread(_ThreadFunc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
8m_threadRmgbus = MyAfxBeginThread(_ThreadFunc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
9m_threadWago = MyAfxBeginThread(_ThreadFunc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
10m_threadCP4002 = MyAfxBeginThread(_CP4002ThreadFunc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
11m_threadMicToCp = MyAfxBeginThread(_MicToCpThreadFunc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
12m_threadCpToMic = MyAfxBeginThread(_CpToMicThreadFunc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
13m_threadGcCMFunc = MyAfxBeginThread(_GcCMThreadFunc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
14m_threadVNCServer = MyAfxBeginThread(_MainThread, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
15m_threadUpdFrameBuffer = MyAfxBeginThread(_DoUpdate, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
16m_thread = MyAfxBeginThread(_ThreadFunc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
17m_threadGc = MyAfxBeginThread(GcThreadFunc, this, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);
18m_threadSecTimer = MyAfxBeginThread(SecTimerThreadFunc, NULL, THREAD_PRIORITY_ABOVE_NORMAL, 0, CREATE_SUSPENDED);
19syncthread = MyAfxBeginThread(DoNtpSync, NULL, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED);