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
973 B
55 lines
973 B
/*
|
|
* Copyright (c) 2018-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
class Interproc {
|
|
synchronized void interproc1Bad(InterprocA a) {
|
|
interproc2Bad(a);
|
|
}
|
|
|
|
void interproc2Bad(InterprocA b) {
|
|
synchronized(b) {}
|
|
}
|
|
|
|
synchronized void interproc1Ok(InterprocB a) {
|
|
interproc2Ok(a);
|
|
}
|
|
|
|
void interproc2Ok(InterprocB b) {
|
|
synchronized(b) {}
|
|
}
|
|
|
|
void reentrant1Ok(InterprocB b) {
|
|
synchronized(this) {
|
|
synchronized(b) {
|
|
reentrant2Ok();
|
|
}
|
|
}
|
|
}
|
|
|
|
synchronized void reentrant2Ok() {}
|
|
}
|
|
|
|
class InterprocA {
|
|
synchronized void interproc1Bad(Interproc c) {
|
|
interproc2Bad(c);
|
|
}
|
|
|
|
void interproc2Bad(Interproc d) {
|
|
synchronized(d) {}
|
|
}
|
|
}
|
|
|
|
class InterprocB {
|
|
void interproc1Ok(Interproc c) {
|
|
synchronized(c) {
|
|
interproc2Ok(c);
|
|
}
|
|
}
|
|
|
|
synchronized void interproc2Ok(Interproc d) {}
|
|
}
|