I’m currently programming in C with win32 API.
I would like to know how can I permanently delete or cancel a mutex and semaphore.
How can I do that, I haven’t found anything about it in MSDN till now.
Thanks!
I’m currently programming in C with win32 API. I would like to know how
Share
You have to close all handles that are opened to that mutex / semaphore.
If you don’t own some of them, you can not.