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.

51 lines
1.0 KiB

/*
* Copyright (c) 2018 - 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.
*/
class Interclass {
synchronized void interclass1Bad(InterclassA a) {
a.interclass1Bad();
}
synchronized void interclass2Bad() {}
synchronized void interclass1Ok(InterclassB b) {
b.interclass1Ok();
}
void interclass2Ok(InterclassB b) {
synchronized(b) {}
}
void reentrantOk(InterclassB b) {
synchronized(this) {
synchronized(b) {
b.interclass1Ok();
}
}
}
}
class InterclassA {
synchronized void interclass1Bad() {}
synchronized void interclass2Bad(Interclass i) {
i.interclass2Bad();
}
}
class InterclassB {
synchronized void interclass1Ok() {}
void interclass2_ok(Interclass c) {
synchronized(c) {
c.interclass2Ok(this);
}
}
}