cpp player

c++,设计模式,ACE,网络开发,架构设计,MMORPG
随笔 - 3, 文章 - 3, 评论 - 5, 引用 - 0
数据加载中……

设置线程的名称,转自emule的源码

/*
Copyright (C)2003 Barry Dunne (http://www.emule-project.net)
 
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
 
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
 
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

// Note To Mods //
/*
Please do not change anything here and release it..
There is going to be a new forum created just for the Kademlia side of the client..
If you feel there is an error or a way to improve something, please
post it in the forum first and let us look at it.. If it is a real improvement,
it will be added to the offical client.. Changing something without knowing
what all it does can cause great harm to the network if released in mass form..
Any mod that changes anything within the Kademlia side will not be allowed to advertise
there client on the eMule forum..
*/

#include "stdafx.h"
#include "./ThreadName.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

namespace Kademlia
{
 void SetThreadName(DWORD dwThreadID, LPCSTR szThreadName, ...)
 {
#ifdef DEBUG
  if (dwThreadID == NULL)
   return;
  __try
  {
      va_list args;
      va_start(args, szThreadName);
      int iLenBuf = 0;
      char *pcharBuffer = NULL;
      int iLenResult;
      do
      {
       iLenBuf += 128;
       delete[] pcharBuffer;
       pcharBuffer = new char[iLenBuf];
       iLenResult = _vsnprintf(pcharBuffer, iLenBuf, szThreadName, args);
      }
      while (iLenResult == -1);
      va_end(args);
      THREADNAME_INFO info;
      info.dwType = 0x1000;
      info.szName = pcharBuffer;
      info.dwThreadID = dwThreadID;
      info.dwFlags = 0;
      __try
      {
          RaiseException(MS_VC_EXCEPTION, 0, sizeof(info) / sizeof(DWORD), (DWORD *)&info);
      } __except (EXCEPTION_CONTINUE_EXECUTION)
     { }
     delete[] pcharBuffer;
 }
 __except (EXCEPTION_CONTINUE_EXECUTION)
  {}
#else

  UNREFERENCED_PARAMETER(dwThreadID);
  UNREFERENCED_PARAMETER(szThreadName);
#endif

 }

 void SetThreadName(LPCSTR szThreadName, ...)
 {
#ifdef DEBUG
  __try
  {
      va_list args;
      va_start(args, szThreadName);
      int iLenBuf = 0;
      char *pcharBuffer = NULL;
      int iLenResult;
      do
      {
       iLenBuf += 128;
       delete [] pcharBuffer;
       pcharBuffer = new char[iLenBuf];
       iLenResult = _vsnprintf(pcharBuffer, iLenBuf, szThreadName, args);
      }
      while (iLenResult == -1);
      va_end(args);
      THREADNAME_INFO info;
      info.dwType = 0x1000;
      info.szName = pcharBuffer;
      info.dwThreadID = (DWORD)-1;
      info.dwFlags = 0;
      __try
      {
          RaiseException(MS_VC_EXCEPTION, 0, sizeof(info) / sizeof(DWORD), (DWORD *)&info);
      } __except (EXCEPTION_CONTINUE_EXECUTION)
     { }
     delete [] pcharBuffer;
 }
 __except (EXCEPTION_CONTINUE_EXECUTION)
  {}
#else

  UNREFERENCED_PARAMETER(szThreadName);
#endif

 }
}

posted on 2010-05-08 17:41 appstudy 阅读(1486) 评论(2)  编辑 收藏 引用

评论

# re: 设置线程的名称,转自emule的源码  回复  更多评论   

见 MSDN http://msdn2.microsoft.com/en-us/library/xcb2z8hs.aspx
2010-05-08 19:39 | oo

# re: 设置线程的名称,转自emule的源码  回复  更多评论   

@oo
@oo
看来out了,VC6.0很烂,没有VS高级,用的是VS2003,确实有些低级了
2010-05-08 23:09 | chinaspx

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