CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
thread_state.h
1
2#ifndef _thread_state_h_
3#define _thread_state_h_
4
5namespace System { namespace Threading {
6
9{
21 Stopped = 16,
29 Aborted = 256
30};
31
32}} // System::Threading
33
34#endif
ThreadState
State of the thread.
Definition: thread_state.h:9
@ Unstarted
Thread is not started.
Definition: thread_state.h:19
@ AbortRequested
Thread abortion is requested.
Definition: thread_state.h:27
@ Aborted
Thread is aborted.
Definition: thread_state.h:29
@ Background
Theread is being executed in background.
Definition: thread_state.h:17
@ WaitSleepJoin
Thread is bein waited to be joined.
Definition: thread_state.h:23
@ SuspendRequested
Thread suspension is requested.
Definition: thread_state.h:15
@ StopRequested
Thread stop is requested.
Definition: thread_state.h:13
@ Suspended
Thread is suspended.
Definition: thread_state.h:25
@ Running
Thread is running.
Definition: thread_state.h:11
@ Stopped
Thread is stopped.
Definition: thread_state.h:21
Definition: db_command.h:9