Improvements to synchronization tests.
This commit is contained in:
18
kern/test/rwtest.c
Normal file
18
kern/test/rwtest.c
Normal file
@@ -0,0 +1,18 @@
|
||||
#include <types.h>
|
||||
#include <lib.h>
|
||||
#include <clock.h>
|
||||
#include <thread.h>
|
||||
#include <synch.h>
|
||||
#include <test.h>
|
||||
#include <kern/secret.h>
|
||||
#include <spinlock.h>
|
||||
|
||||
int rwtest(int nargs, char **args) {
|
||||
(void)nargs;
|
||||
(void)args;
|
||||
|
||||
kprintf_n("rwt1 unimplemented\n");
|
||||
success(FAIL, SECRET, "rwt1");
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user