Remove mutex names, fixes #722

Named mutexes are used for inter-process synchronization, using them to synchronize threads of a single process is just begging for trouble when running multiple instances of the application.
This commit is contained in:
David Hrdlička
2020-04-27 13:24:43 +02:00
parent 276cd0cb80
commit 2a5382a97b
5 changed files with 6 additions and 6 deletions

View File

@@ -148,7 +148,7 @@ extern void thread_reset_event(event_t *arg);
extern int thread_wait_event(event_t *arg, int timeout);
extern void thread_destroy_event(event_t *arg);
extern mutex_t *thread_create_mutex(wchar_t *name);
extern mutex_t *thread_create_mutex(void);
extern void thread_close_mutex(mutex_t *arg);
extern int thread_wait_mutex(mutex_t *arg);
extern int thread_release_mutex(mutex_t *mutex);