DEV Community

Cover image for Lock / Mutex to a CS undergraduate (Difficulty 2)
Saurav Shah
Saurav Shah

Posted on • Updated on

Lock / Mutex to a CS undergraduate (Difficulty 2)

This is a submission for DEV Computer Science Challenge v24.06.12: One Byte Explainer.

Explainer

Locks prevent issues when multiple entities access a resource simultaneously (like multiple apps writing to a file), which can cause unexpected behavior (like overwritten writes). Google Docs uses it to avoid overwritten edits during collaboration.

Additional Context

I am planning to post 5 submissions explaining "Lock/Mutex" at 5 levels of difficulty. This is Difficulty 2.

A Computer Science first year student, probably have not heard of mutex, but might have heard about some problems involving race condition. An explanation that explains what mutex is along with its usage and example is useful.

For more about explaining the term in 5 Levels of difficulty, refer to the below post. It's interesting!

Previous explanation for Difficulty 1
Next explanation for Difficulty 3

Cheers🎉 ~ sauravshah31

Top comments (0)