Mon 14 Oct 23:06:38 CEST 2024

This commit is contained in:
sbosse 2024-10-14 23:06:59 +02:00
parent 994b2335d5
commit f51ccd3081

28
kernel/mutex.c Normal file
View File

@ -0,0 +1,28 @@
/*
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.
*/
#include "mutex.h"
#include "interrupt.h"
#include "process.h"
void mutex_lock(struct mutex *m)
{
interrupt_block();
while(m->locked) {
process_wait(&m->waitqueue);
interrupt_block();
}
m->locked = 1;
interrupt_unblock();
}
void mutex_unlock(struct mutex *m)
{
interrupt_block();
m->locked = 0;
process_wakeup(&m->waitqueue);
interrupt_unblock();
}