Skip to content

Commit

Permalink
sleeplock files
Browse files Browse the repository at this point in the history
  • Loading branch information
kaashoek committed Sep 12, 2016
1 parent dec637b commit 564a1cf
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
56 changes: 56 additions & 0 deletions sleeplock.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
// Sleeping locks

#include "types.h"
#include "defs.h"
#include "param.h"
#include "x86.h"
#include "memlayout.h"
#include "mmu.h"
#include "proc.h"
#include "spinlock.h"
#include "sleeplock.h"

void
initsleeplock(struct sleeplock *lk, char *name)
{
initlock(&lk->lk, "sleep lock");
lk->name = name;
lk->locked = 0;
lk->pid = 0;
}

void
acquiresleep(struct sleeplock *lk)
{
acquire(&lk->lk);
while (lk->locked) {
sleep(lk, &lk->lk);
}
lk->locked = 1;
lk->pid = proc->pid;
release(&lk->lk);
}

void
releasesleep(struct sleeplock *lk)
{
acquire(&lk->lk);
lk->locked = 0;
lk->pid = 0;
wakeup(lk);
release(&lk->lk);
}

int
holdingsleep(struct sleeplock *lk)
{
int r;

acquire(&lk->lk);
r = lk->locked;
release(&lk->lk);
return r;
}



10 changes: 10 additions & 0 deletions sleeplock.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// Long-term locks for processes
struct sleeplock {
uint locked; // Is the lock held?
struct spinlock lk; // spinlock protecting this sleep lock

// For debugging:
char *name; // Name of lock.
int pid; // Process holding lock
};

0 comments on commit 564a1cf

Please sign in to comment.