What does shared for functions mean? I thought it was supposed to automatically synchronize access, but this doesn't seem to be the case.

void f() shared {
// no synchronization
}

void f() {
  synchronized {
    // do stuff
  }
}

Reply via email to