Do the lock and unlock synchronization pointcuts get triggered when a thread calls wait inside a synchronized block?
ie.
synchronized(this) {
// blah
wait();
// blah
}
Would this trigger the following?
lock()
unlock()
lock()
unlock()
Cheers,
Jon
_______________________________________________ aspectj-users mailing list [email protected] https://dev.eclipse.org/mailman/listinfo/aspectj-users
