You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.0 KiB

/*
* 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 <mutex>
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_;
};
}