Home | History | Annotate | Download | only in threading

Lines Matching defs:SimpleThread

19 // resources.  You are also responsible for destructing the SimpleThread object.
20 // It is invalid to destroy a SimpleThread while it is running, or without
24 // Thread Safety: A SimpleThread is not completely thread safe. It is safe to
37 // // The SimpleThread object is still valid, however you may not call Join
56 // This is the base SimpleThread. You can derive from it and implement the
58 class BASE_API SimpleThread : public PlatformThread::Delegate {
74 // Create a SimpleThread. |options| should be used to manage any specific
78 explicit SimpleThread(const std::string& name_prefix);
79 SimpleThread(const std::string& name_prefix, const Options& options);
81 virtual ~SimpleThread();
117 class BASE_API DelegateSimpleThread : public SimpleThread {