user778199
user778199

Reputation:

The thread has exited with code 1 (0x1)

The thread 'unsigned long __cdecl Open_Thread(void *)' (0x7380036) has exited with code 1 (0x1)

is this an error or thread executed successfully what doe sthe code indicates

Upvotes: 2

Views: 16671

Answers (2)

Ajay
Ajay

Reputation: 18431

Debuggers do keep track of thread creation, termination, first-chance exceptions, DLL load events and so on. The message you saw is just diagnostics message, indicating that some thread has exited.

Upvotes: 0

David Heffernan
David Heffernan

Reputation: 613013

Exit code 0 is customarily used to signal successful termination. Exit code 1 would seem to indicate an error.

Only someone in possession of the specification of Open_Thread could be sure. That would be you.

Upvotes: 9

Related Questions