CWinThread *pThread;
if(pThread=AfxBeginThread(CMServer::FTPDealProc, pMServer, THREAD_PRIORITY_LOWEST,
0, CREATE_SUSPENDED, NULL))     //倒数第二个是控制线程创建后是启动还是马上执行。
    {
TRACE("%d", pThread->m_hThread);
x = pThread->ResumeThread();
// Sleep(500);//暂停

y = WaitForSingleObject(pThread->m_hThread, INFINITE);
z = GetLastError();    }请问下,pThread->m_hThread何时才叫有信号,是FTPDealProc函数执行完了?还是什么?
请高手指点下。

解决方案 »

  1.   

    [Quote=引用楼主 yekoufeng 的帖子:]CWinThread *pThread;
    if(pThread=AfxBeginThread(CMServer::FTPDealProc, pMServer, THREAD_PRIORITY_LOWEST,
    0, CREATE_SUSPENDED, NULL))     //倒数第二个是控制线程创建后是启动还是马上执行。是挂起.
    {
    TRACE("%d", pThread->m_hThread);
    x = pThread->ResumeThread(); //此时开始执行.
    // Sleep(500);//暂停y = WaitForSingleObject(pThread->m_hThread, INFINITE);
     /* DWORD WaitForSingleObject(
      HANDLE hHandle,        // handle to object ,当pThread->m_hThread有效时,程序往下执行.
      DWORD dwMilliseconds   // time-out interval,超时为INFINITE
    );*/
    z = GetLastError();
      

  2.   

    建议你看看MSDN里面的说明:
    WaitForSingleObject
    The WaitForSingleObject function returns when one of the following occurs: The specified object is in the signaled state. 
    The time-out interval elapses. 
    To enter an alertable wait state, use the WaitForSingleObjectEx function. To wait for multiple objects, use the WaitForMultipleObjects. DWORD WaitForSingleObject(
      HANDLE hHandle,        // handle to object
      DWORD dwMilliseconds   // time-out interval
    );
    Parameters
    hHandle 
    [in] Handle to the object. For a list of the object types whose handles can be specified, see the following Res section. 
    If this handle is closed while the wait is still pending, the function's behavior is undefined. Windows NT/2000/XP: The handle must have SYNCHRONIZE access. For more information, see Standard Access Rights. dwMilliseconds 
    [in] Specifies the time-out interval, in milliseconds. The function returns if the interval elapses, even if the object's state is nonsignaled. If dwMilliseconds is zero, the function tests the object's state and returns immediately. If dwMilliseconds is INFINITE, the function's time-out interval never elapses. 
    Return Values
    If the function succeeds, the return value indicates the event that caused the function to return. This value can be one of the following. Value Meaning 
    WAIT_ABANDONED The specified object is a mutex object that was not released by the thread that owned the mutex object before the owning thread terminated. Ownership of the mutex object is granted to the calling thread, and the mutex is set to nonsignaled. 
    WAIT_OBJECT_0 The state of the specified object is signaled. 
    WAIT_TIMEOUT The time-out interval elapsed, and the object's state is nonsignaled. 
    If the function fails, the return value is WAIT_FAILED. To get extended error information, call GetLastError. Res
    The WaitForSingleObject function checks the current state of the specified object. If the object's state is nonsignaled, the calling thread enters the wait state. It uses no processor time while waiting for the object state to become signaled or the time-out interval to elapse.The function modifies the state of some types of synchronization objects. Modification occurs only for the object whose signaled state caused the function to return. For example, the count of a semaphore object is decreased by one. The WaitForSingleObject function can wait for the following objects: Change notification 
    Console input 
    Event 
    Job 
    Mutex 
    Process 
    Semaphore 
    Thread 
    Waitable timer 
    Use caution when calling the wait functions and code that directly or indirectly creates windows. If a thread creates any windows, it must process messages. Message broadcasts are sent to all windows in the system. A thread that uses a wait function with no time-out interval may cause the system to become deadlocked. Two examples of code that indirectly creates windows are DDE and COM CoInitialize. Therefore, if you have a thread that creates windows, use MsgWaitForMultipleObjects or MsgWaitForMultipleObjectsEx, rather than WaitForSingleObject.For more information, see Using Mutex Objects.Requirements 
      Windows NT/2000/XP: Included in Windows NT 3.1 and later.
      Windows 95/98/Me: Included in Windows 95 and later.
      Header: Declared in Winbase.h; include Windows.h.
      Library: Use Kernel32.lib.
      

  3.   

    线程结束后,为受信状态,WaitForSingleObject返回,这里应该是是FTPDealProc函数执行完了,return后线程返回了.