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
aspectj-users@eclipse.org
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to