Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

thread return code

0 views
Skip to first unread message

Mark

unread,
Mar 18, 2005, 2:42:37 PM3/18/05
to
The output debug window says the following:
The thread 'Win32 Thread' (0x928) has exited with code -2147024637
(0x80070103)
I tried to find the error in winerror.h, but is not defined there.
Is there a way to get more info about the thread and/or error code ?


The March Hare [MVP]

unread,
Mar 18, 2005, 3:10:37 PM3/18/05
to

http://tmhare.mvps.org/faqs.htm#err

HRESULT: 0x80070103 (2147942659)
Name: ERROR_NO_MORE_ITEMS
DIERR_NOMOREITEMS
Description: No more items.
Severity code: Failed
Facility Code: FACILITY_WIN32 (7)
Error Code: 0x0103 (259)

--
Please read this before replying:
1. Dshow & posting help: http://tmhare.mvps.org/help.htm
2. Trim & respond inline (please don't top post or snip everything)
3. Benefit others: follow up if you are helped or you found a solution

The March Hare [MVP]

unread,
Mar 18, 2005, 3:24:48 PM3/18/05
to
On Fri, 18 Mar 2005 13:10:37 -0700, The March Hare [MVP] wrote:

> http://tmhare.mvps.org/faqs.htm#err

Oops, should be:

http://tmhare.mvps.org/faqs.htm#hr

Mark

unread,
Mar 18, 2005, 4:06:54 PM3/18/05
to

> HRESULT: 0x80070103 (2147942659)
> Name: ERROR_NO_MORE_ITEMS
> DIERR_NOMOREITEMS
> Description: No more items.
> Severity code: Failed
> Facility Code: FACILITY_WIN32 (7)
> Error Code: 0x0103 (259)
>
> --
> Please read this before replying:
> 1. Dshow & posting help: http://tmhare.mvps.org/help.htm
> 2. Trim & respond inline (please don't top post or snip everything)
> 3. Benefit others: follow up if you are helped or you found a solution

The message is given when IGraphBuilder::Release() is called.
Don't know if I have to worry about it ?


The March Hare [MVP]

unread,
Mar 18, 2005, 8:09:53 PM3/18/05
to
On Fri, 18 Mar 2005 22:06:54 +0100, Mark wrote:

>> HRESULT: 0x80070103 (2147942659)
>> Name: ERROR_NO_MORE_ITEMS
>> DIERR_NOMOREITEMS
>> Description: No more items.
>> Severity code: Failed
>> Facility Code: FACILITY_WIN32 (7)
>> Error Code: 0x0103 (259)
>

> The message is given when IGraphBuilder::Release() is called.
> Don't know if I have to worry about it ?

I think you'll find that the samples give the same error code. It is
confusing that it gives an error in the debug output but AFAIK it is
harmless.

Tim Roberts

unread,
Mar 19, 2005, 11:52:36 PM3/19/05
to

This is NOT an error code. It's just a thread return code. EVERY thread
has to have a return code when it exits, but it has NO inherent meaning.
It MIGHT happen to have the same value as an error code (as seems likely in
this case), but the return value from a thread is not indicative of a
problem.

Didn't I respond to this very same issue on a different newsgroup?
--
- Tim Roberts, ti...@probo.com
Providenza & Boekelheide, Inc

0 new messages