24 lines
453 B
C
24 lines
453 B
C
/*
|
|
* All the contents of this file are overwritten during automated
|
|
* testing. Please consider this before changing anything in this file.
|
|
*/
|
|
|
|
#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;
|
|
}
|