xtd 0.2.0
thread_state.h File Reference
#include "../enum.h"

Definition

Contains xtd::threading::thread_state enumeration.

Include dependency graph for thread_state.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 xtd
 The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
 
 xtd::threading
 The xtd::threading namespace provides classes and interfaces that enable multithreaded programming. In addition to classes for synchronizing thread activities and access to data ( xtd::threading::mutex, xtd::threading::monitor, xtd::threading::interlocked, xtd::threading::auto_reset_event, and so on), this namespace includes a xtd::threading::thread_pool class that allows you to use a pool of system-supplied threads, and a xtd::threading::timer class that executes callback methods on thread pool threads.
 

Enumerations

enum  xtd::threading::thread_state {
  xtd::threading::thread_state::running = 0x0000,
  xtd::threading::thread_state::stop_requested = 0x0001,
  xtd::threading::thread_state::suspend_requested = 0x0002,
  xtd::threading::thread_state::background = 0x0004,
  xtd::threading::thread_state::unstarted = 0x0008,
  xtd::threading::thread_state::stopped = 0x0010,
  xtd::threading::thread_state::wait_sleep_join = 0x0020,
  xtd::threading::thread_state::suspended = 0x0040,
  xtd::threading::thread_state::abort_requested = 0x0080,
  xtd::threading::thread_state::aborted = 0x0100
}
 Specifies the execution states of a System::Threading::Thread. More...