Sopra Steria interview question

Explain what a spin lock is.

Interview Answer

Anonymous

18 Nov 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