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.
58 lines
1.0 KiB
58 lines
1.0 KiB
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include <mutex>
|
|
|
|
// the deadlocks here are masked by the starvation-skip-analysis option in
|
|
// .inferconfig
|
|
namespace skipped {
|
|
class Skip {
|
|
public:
|
|
Skip() {}
|
|
|
|
void skipped_ok() { private_deadlock(); }
|
|
|
|
void not_skipped_bad() { private_deadlock(); }
|
|
|
|
private:
|
|
std::mutex mutex_;
|
|
|
|
void private_deadlock() {
|
|
std::lock_guard<std::mutex> l(mutex_);
|
|
{ std::lock_guard<std::mutex> l(mutex_); }
|
|
}
|
|
};
|
|
|
|
template <class T>
|
|
class SkipTemplate {
|
|
private:
|
|
T* a_;
|
|
std::mutex mutex_;
|
|
|
|
void private_deadlock() {
|
|
std::lock_guard<std::mutex> l(mutex_);
|
|
{ std::lock_guard<std::mutex> l(mutex_); }
|
|
}
|
|
|
|
public:
|
|
void skipped_ok() { private_deadlock(); }
|
|
|
|
void not_skipped_bad() { private_deadlock(); }
|
|
};
|
|
|
|
class UseTemplate {
|
|
public:
|
|
void foo() {
|
|
SkipTemplate<void> x;
|
|
|
|
x.skipped_ok();
|
|
x.not_skipped_bad();
|
|
}
|
|
};
|
|
|
|
} // namespace skipped
|