Multiple choice

Which statistic is incremented if a willing-to-wait latch request is satisfied on the first attempt?

  1. SLEEPS

  2. GETS

  3. MISSES

  4. IMMEDIATE_GETS

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

When a willing-to-wait latch request is granted on the first attempt (no spin/wait), the GETS statistic is incremented. SLEEPS increments after spinning, MISSES increments when not immediately available, and IMMEDIATE_GETS is for no-wait mode. Immediate success on first attempt directly increments GETS.