XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
concurrent.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 #include <xtd/xtd.hpp>
8 
9 #include <thread>
10 
11 namespace xtd{
12 
13 
14  namespace concurrent{
17  class null_wait_policy{
19  public:
20  FORCEINLINE void operator ()(){/*nothing*/}
21  };
24  public:
25  FORCEINLINE void operator ()(){ std::this_thread::yield(); }
26  };
27 
29  template <typename _Ty>
30  class scope_locker{
31  public:
32  using spin_lock_type = _Ty;
33  ~scope_locker(){ _Lock.unlock(); }
34  explicit scope_locker(spin_lock_type& oLock) : _Lock(oLock){ _Lock.lock(); }
35  scope_locker(const scope_locker&) = delete;
36  scope_locker& operator=(const scope_locker&) = delete;
37 
38  private:
39  spin_lock_type& _Lock;
40  };
41 
43  }
44 
45 }
46 
47 #include "hash_map.hpp"
48 #include "queue.hpp"
49 #include "stack.hpp"
50 #include "spin_lock.hpp"
51 #include "rw_lock.hpp"
52 #include "recursive_spin_lock.hpp"
RAII pattern to automatically acquire and release the spin lock.
Definition: concurrent.hpp:30
Simple multi reader/single writer spin lock.
concurrently push and pop items in a FILO stack
host, target and build configurations and settings Various components are purpose built for specific ...
Wait policy that yields the current thread.
Definition: concurrent.hpp:23
Recursive spin lock.
Wait policy that does nothing. This is the default behavior.
Definition: concurrent.hpp:18
simple user mode spin lock based on std::atomic
concurrently insert, query and delete items in an unordered hash map
concurrently push and pop items from a FIFO queue