git-svn-id: svn://kolibrios.org@6082 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge)
2016-01-20 04:19:53 +00:00
parent fc6f59584d
commit 9e5dea1997
153 changed files with 11372 additions and 3456 deletions

View File

@@ -49,7 +49,7 @@
struct mutex {
/* 1: unlocked, 0: locked, negative: locked, possible waiters */
struct list_head wait_list;
atomic_t count;
atomic_t count;
};
/*
@@ -58,7 +58,7 @@ struct mutex {
*/
struct mutex_waiter {
struct list_head list;
int *task;
int *task;
};