Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: third_party/mojo/src/mojo/public/cpp/utility/lib/thread.cc

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/mojo/src/mojo/public/cpp/utility/lib/thread.cc
diff --git a/third_party/mojo/src/mojo/public/cpp/utility/lib/thread.cc b/third_party/mojo/src/mojo/public/cpp/utility/lib/thread.cc
deleted file mode 100644
index 007d4732f88a2b4bcd308ffd14deafacdd977071..0000000000000000000000000000000000000000
--- a/third_party/mojo/src/mojo/public/cpp/utility/lib/thread.cc
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "third_party/mojo/src/mojo/public/cpp/utility/thread.h"
-
-#include <assert.h>
-
-namespace mojo {
-
-Thread::Thread() : options_(), thread_(), started_(false), joined_(false) {
-}
-
-Thread::Thread(const Options& options)
- : options_(options), thread_(), started_(false), joined_(false) {
-}
-
-Thread::~Thread() {
- // If it was started, it must have been joined.
- assert(!started_ || joined_);
-}
-
-void Thread::Start() {
- assert(!started_);
- assert(!joined_);
-
- pthread_attr_t attr;
- int rv = pthread_attr_init(&attr);
- MOJO_ALLOW_UNUSED_LOCAL(rv);
- assert(rv == 0);
-
- // Non-default stack size?
- if (options_.stack_size() != 0) {
- rv = pthread_attr_setstacksize(&attr, options_.stack_size());
- assert(rv == 0);
- }
-
- started_ = true;
- rv = pthread_create(&thread_, &attr, &ThreadRunTrampoline, this);
- assert(rv == 0);
-
- rv = pthread_attr_destroy(&attr);
- assert(rv == 0);
-}
-
-void Thread::Join() {
- // Must have been started but not yet joined.
- assert(started_);
- assert(!joined_);
-
- joined_ = true;
- int rv = pthread_join(thread_, nullptr);
- MOJO_ALLOW_UNUSED_LOCAL(rv);
- assert(rv == 0);
-}
-
-// static
-void* Thread::ThreadRunTrampoline(void* arg) {
- Thread* self = static_cast<Thread*>(arg);
- self->Run();
- return nullptr;
-}
-
-} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698