小明思考

高性能服务器端计算
posts - 70, comments - 428, trackbacks - 0, articles - 0
  C++博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

使用PostThreadMessage在Win32线程间传递消息

Posted on 2005-12-31 15:31 小明 阅读(34913) 评论(10)  编辑 收藏 引用 所属分类: Win32

PostThreadMessage的原型是这样的

BOOL PostThreadMessage( DWORD idThread,
    UINT Msg,
    WPARAM wParam,
    LPARAM lParam
);

PostThreadMessage可以用于线程之间的异步通讯,因为它不用等待调用者返回,
这也许是线程通讯中最简单的一种方法了。

但是要注意以下问题
1 .PostThreadMessage有时会失败,报1444错误(Invalid thread identifier. )
其实这不一定是线程不存在的原因,也有可能是线程不存在消息队列(message queue)造成的。
事实上,并不是每个thread都有message queue,那如何让thread具有呢?
答案是,至少调用message相关的function一次,比如GetMessage,PeekMessage。

2.如果是post动态分配的memory给另外一个thread,要注意内存的正确释放。

3.PostThreadMessage不能够post WM_COPYDATE之类的同步消息,否则会报错

4.最好不要使用PostThreadMessage post message给一个窗口,使用PostMessage替代。

下面是我写的一个比较严整的例子,仅供参考。

#include <windows.h>
#include 
<cstdio>
#include 
<process.h>

#define MY_MSG WM_USER+100
const int MAX_INFO_SIZE = 20;

HANDLE hStartEvent; 
// thread start event

// thread function
unsigned __stdcall fun(void *param)
{
    printf(
"thread fun start\n");

    MSG msg;
    PeekMessage(
&msg, NULL, WM_USER, WM_USER, PM_NOREMOVE);

    
if(!SetEvent(hStartEvent)) //set thread start event 
    {
        printf(
"set start event failed,errno:%d\n",::GetLastError());
        
return 1;
    }
    
    
while(true)
    {
        
if(GetMessage(&msg,0,0,0)) //get msg from message queue
        {
            
switch(msg.message)
            {
            
case MY_MSG:
                
char * pInfo = (char *)msg.wParam;
                printf(
"recv %s\n",pInfo);
                delete[] pInfo;
                
break;
            }
        }
    };
    
return 0;
}

int main()
{
    HANDLE hThread;
    unsigned nThreadID;

    hStartEvent 
= ::CreateEvent(0,FALSE,FALSE,0); //create thread start event
    if(hStartEvent == 0)
    {
        printf(
"create start event failed,errno:%d\n",::GetLastError());
        
return 1;
    }

    
//start thread
    hThread = (HANDLE)_beginthreadex( NULL, 0&fun, NULL, 0&nThreadID );
    
if(hThread == 0)
    {
        printf(
"start thread failed,errno:%d\n",::GetLastError());
        CloseHandle(hStartEvent);
        
return 1;
    }

    
//wait thread start event to avoid PostThreadMessage return errno:1444
    ::WaitForSingleObject(hStartEvent,INFINITE);
    CloseHandle(hStartEvent);

    
int count = 0;
    
while(true)
    {
        
char* pInfo = new char[MAX_INFO_SIZE]; //create dynamic msg
        sprintf(pInfo,"msg_%d",++count);
        
if(!PostThreadMessage(nThreadID,MY_MSG,(WPARAM)pInfo,0))//post thread msg
        {
            printf(
"post message failed,errno:%d\n",::GetLastError());
            delete[] pInfo;
        }
        ::Sleep(
1000);
    }

    CloseHandle(hThread);
    
return 0;
}

===========Happy New Year==============

 

Feedback

# re: 使用PostThreadMessage在Win32线程间传递消息  回复  更多评论   

2008-02-25 14:26 by tmp
好文章!!!

# re: 使用PostThreadMessage在Win32线程间传递消息  回复  更多评论   

2009-02-14 18:02 by xym
很有用,谢谢!

# re: 使用PostThreadMessage在Win32线程间传递消息  回复  更多评论   

2009-05-22 15:29 by 飞鸽传书
好复杂!!!

# re: 使用PostThreadMessage在Win32线程间传递消息  回复  更多评论   

2009-08-06 08:21 by 张力
请尝试着不同进程之间的线程如何通信:比如说,我想在A进程中杀死B进程中的一个特定线程

# re: 使用PostThreadMessage在Win32线程间传递消息  回复  更多评论   

2011-04-08 15:00 by 万昊
无窗口线程的消息队列的建立,在msdn的PostThreadMessage的remark部分有详细介绍。

# re: 使用PostThreadMessage在Win32线程间传递消息  回复  更多评论   

2011-09-08 01:11 by pofante
好文章

# re: 使用PostThreadMessage在Win32线程间传递消息  回复  更多评论   

2012-09-20 23:11 by albin
好文章

# re: 使用PostThreadMessage在Win32线程间传递消息[未登录]  回复  更多评论   

2013-07-30 22:59 by 1
非常好的文章,找了半天终于解决了问题!GOOD!非常感谢!!

# re: 使用PostThreadMessage在Win32线程间传递消息  回复  更多评论   

2015-06-06 11:59 by Mr.Z
学到了,谢谢作者

# re: 使用PostThreadMessage在Win32线程间传递消息  回复  更多评论   

2016-03-17 10:09 by Paul wang
有效的的将结合代码,不知postthreadmessage的效率怎样

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理