Forgot rwt5.

This commit is contained in:
Geoffrey Challen
2016-02-15 08:42:54 -05:00
parent 479acf49c2
commit dc00578b06
3 changed files with 17 additions and 0 deletions

View File

@@ -12,6 +12,10 @@
#include <kern/secret.h>
#include <spinlock.h>
/*
* Use these stubs to test your reader-writer locks.
*/
int rwtest(int nargs, char **args) {
(void)nargs;
(void)args;
@@ -51,3 +55,13 @@ int rwtest4(int nargs, char **args) {
return 0;
}
int rwtest5(int nargs, char **args) {
(void)nargs;
(void)args;
kprintf_n("rwt5 unimplemented\n");
success(FAIL, SECRET, "rwt5");
return 0;
}