lock               74 kern/dev/generic/console.c static struct lock *con_userlock_read = NULL;
lock               75 kern/dev/generic/console.c static struct lock *con_userlock_write = NULL;
lock              307 kern/dev/generic/console.c 	struct lock *lk;
lock              402 kern/dev/generic/console.c 	struct lock *rlk, *wlk;
lock               50 kern/dev/lamebus/emu.h 	struct lock *e_lock;
lock               81 kern/include/synch.h struct lock *lock_create(const char *name);
lock               46 kern/lib/kprintf.c static struct lock *kprintf_lock;
lock               51 kern/test/synchtest.c static struct lock *testlock = 0;
lock               56 kern/test/synchtest.c static struct lock *testlock;
lock               17 kern/test/uw-tests.c static struct lock *testlock = NULL;
lock              150 kern/thread/synch.c struct lock *
lock              153 kern/thread/synch.c         struct lock *lock;
lock              155 kern/thread/synch.c         lock = kmalloc(sizeof(struct lock));
lock              156 kern/thread/synch.c         if (lock == NULL) {
lock              160 kern/thread/synch.c         lock->lk_name = kstrdup(name);
lock              161 kern/thread/synch.c         if (lock->lk_name == NULL) {
lock              162 kern/thread/synch.c                 kfree(lock);
lock              168 kern/thread/synch.c         return lock;
lock              174 kern/thread/synch.c         KASSERT(lock != NULL);
lock              178 kern/thread/synch.c         kfree(lock->lk_name);
lock              179 kern/thread/synch.c         kfree(lock);
lock              187 kern/thread/synch.c         (void)lock;  // suppress warning until code gets written
lock              195 kern/thread/synch.c         (void)lock;  // suppress warning until code gets written
lock              203 kern/thread/synch.c         (void)lock;  // suppress warning until code gets written
lock              250 kern/thread/synch.c         (void)lock;  // suppress warning until code gets written
lock              258 kern/thread/synch.c 	(void)lock;  // suppress warning until code gets written
lock              266 kern/thread/synch.c 	(void)lock;  // suppress warning until code gets written
lock               91 kern/vfs/vfslist.c static struct lock *vfs_biglock;