Home | History | Annotate | Download | only in platform

Lines Matching defs:Thread

116   // Returns the accumulated user time for thread. This routine
423 // Thread
425 // Thread objects are used for creating and running threads. When the start()
426 // method is called the new thread starts running the run() method in the new
427 // thread. The Thread object should not be deallocated before the thread has
430 class V8_BASE_EXPORT Thread {
432 // Opaque data type for thread-local storage keys.
449 // Create new thread.
450 explicit Thread(const Options& options);
451 virtual ~Thread();
453 // Start new thread by calling the Run() method on the new thread.
456 // Start new thread and wait until Run() method is called on the new thread.
465 // Wait until thread terminates.
475 // Thread-local storage.
503 // The thread name length is limited to 16 based on Linux's implementation of
524 DISALLOW_COPY_AND_ASSIGN(Thread);