/* * Copyright (c) 2017 - present Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ #include namespace basics { class Basic { public: Basic() {} void set(int new_value) { not_guarded = new_value; mutex_.lock(); well_guarded = new_value; suspiciously_read = new_value; mutex_.unlock(); suspiciously_written = new_value; } int get1() { int result; mutex_.lock(); result = well_guarded; mutex_.unlock(); return result; } int get2() { int result; mutex_.lock(); result = suspiciously_written; mutex_.unlock(); return result; } int get3() { return not_guarded; } int get4() { return suspiciously_read; } private: int well_guarded; int suspiciously_read; int suspiciously_written; int not_guarded; std::mutex mutex_; }; }