From aaa6edc30ec6e5cbc2774566a5ec75f81a203e0b Mon Sep 17 00:00:00 2001 From: "antnh6@gmail.com" <antnh6@gmail.com> Date: Wed, 16 May 2018 11:03:24 -0400 Subject: [PATCH] basic setup --- README.md | 18 ++++++++++++++++++ include/priority-q.h | 2 ++ 2 files changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a7bf5ef --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +## Tom +- [ ] main +- [ ] TDPQ + +## An +- [ ] TD +- [ ] Context Switch Assembly +- [ ] Syscall (user side five functions?) + + +## TBD +- [ ] kernel side syscall The five functions, such as create) +- [ ] Scheduler +- [ ] Makefile + + +## Ideas +- I think it's `swi n` where n is which of the 5 syscalls, say n = 1 is equal to Create \ No newline at end of file diff --git a/include/priority-q.h b/include/priority-q.h index b7cd2e6..c2fbb0f 100644 --- a/include/priority-q.h +++ b/include/priority-q.h @@ -8,6 +8,8 @@ typedef struct TD* Head; TD* Tail; int Length; + // What bout dis :) + // TD* TDList; } TDPQ; int TDPQReady(TDPQ* PQ); -- GitLab