Fix The thread xxx has exited with code 259 (0×103)_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > Fix The thread xxx has exited with code 259 (0×103)

Fix The thread xxx has exited with code 259 (0×103)

 2014/11/6 15:13:21  zhoukai83  程序员俱乐部  我要评论(0)
  • 摘要:WhenrunthetestcaseinVS2013,youmayencounterbelowproblemAftertestcaseend,itwillshowbelowmessageinfintelynomatterhowlongyouwait,testdoesnotfinishThethread0x23a4hasexitedwithcode259(0×103).Thethread0×2884hasexitedwithcode259(0×103)
  • 标签:has thread

When run the test case in VS2013, you may encounter below problem

After test case end, it will show below message infintely no matter how long you wait, test does not finish

The thread 0x23a4 has exited with code 259 (0×103).

The thread 0×2884 has exited with code 259 (0×103).
The thread 0x27ec has exited with code 259 (0×103).
The thread 0×1978 has exited with code 259 (0×103).
The thread 0×1534 has exited with code 259 (0×103).
The thread 0x1ad8 has exited with code 259 (0×103).
The thread 0×2938 has exited with code 259 (0×103).
The thread 0x22c8 has exited with code 259 (0×103).

 

From MSDN Documentation:

Remarks

This function returns immediately. If the specified thread has not terminated and the function succeeds, the status returned is STILL_ACTIVE. If the thread has terminated and the function succeeds, the status returned is one of the following values: The exit value specified in the ExitThread or TerminateThread function. The return value from the thread function. The exit value of the thread’s process. Important The GetExitCodeThread function returns a valid error code defined by the application only after the thread terminates. Therefore, an application should not use STILL_ACTIVE (259) as an error code. If a thread returns STILL_ACTIVE (259) as an error code, applications that test for this value could interpret it to mean that the thread is still running and continue to test for the completion of the thread after the thread has terminated, which could put the application into an infinite loop.

So basically it’s still checking current thread from time to time.

Is there any solution to resolve and fix this issue, problem.


本博客已搬家至: http://www.kai-zhou.com,  其他博客已停止更新,欢迎访问:Fix The thread xxx has exited with code 259 (0×103) 查看文章的最新版本,获得解决办法.  

发表评论
用户名: 匿名