23 lines
381 B
C
23 lines
381 B
C
|
/*
|
||
|
Copyright (C) 2015-2019 The University of Notre Dame
|
||
|
This software is distributed under the GNU General Public License.
|
||
|
See the file LICENSE for details.
|
||
|
*/
|
||
|
|
||
|
#ifndef MUTEX_H
|
||
|
#define MUTEX_H
|
||
|
|
||
|
#include "list.h"
|
||
|
|
||
|
struct mutex {
|
||
|
int locked;
|
||
|
struct list waitqueue;
|
||
|
};
|
||
|
|
||
|
#define MUTEX_INIT {0,LIST_INIT}
|
||
|
|
||
|
void mutex_lock(struct mutex *m);
|
||
|
void mutex_unlock(struct mutex *m);
|
||
|
|
||
|
#endif
|