How is it called when critical section is extended in subclass or caller function?
Suppose class A has synchronized methods m1 and m2
class A {
public synchronized void m1() {}
public synchronized void m2() {}
}
And class B extends A has method m3 which uses both m1 and m2 and is also synchronized
class B extends A {
public synchronized void m3() {
...
m1();
...
m2();
...
}
}
This can be required if m3 wants to have state unchanged between calls to m1 and m2.
The question is about terminology.
What is it called?
