#include <atomic>
#include <misc/gen/Semaphore.h>
#include <misc/gen/Sync.h>
#include <misc/gen/Thread.h>
#include <misc/global.h>
Go to the source code of this file.
|
class | sf::ThreadRelay |
| Provides a way to stop executing a thread until the main thread enables the thread again. More...
|
|
class | sf::ThreadRelay::RelayBase |
| Base class for the ThreadRelay::Relay0,1,2,3 templates for storing in a list. More...
|
|
class | sf::ThreadRelay::Relay0< ClassType, MethodType, Ret > |
| Template for a method having 0 arguments. More...
|
|
class | sf::ThreadRelay::Relay1< ClassType, MethodType, Ret, Arg1 > |
| Template for a method having 1 argument. More...
|
|
class | sf::ThreadRelay::Relay2< ClassType, MethodType, Ret, Arg1, Arg2 > |
| Template for a method having 2 arguments. More...
|
|
class | sf::ThreadRelay::Relay3< ClassType, MethodType, Ret, Arg1, Arg2, Arg3 > |
| Template for a method having 3 arguments. More...
|
|
class | sf::ThreadRelay::Relay4< ClassType, MethodType, Ret, Arg1, Arg2, Arg3, Arg4 > |
| Template for a method having 4 arguments. More...
|
|