Sopra Steria Interview Question

Explain what a spin lock is.

Interview Answer

Anonymous

Nov 18, 2014

In software engineering, a spinlock is a lock which causes a thread trying to acquire it to simply wait in a loop ("spin") while repeatedly checking if the lock is available. Since the thread remains active but is not performing a useful task, the use of such a lock is a kind of busy waiting.

1