Create //TODO: list

This commit is contained in:
John 2022-04-03 11:52:30 -05:00
parent 41301ece28
commit ea6dfb0dee

View File

@ -14,4 +14,8 @@ int main (int argc, char* argv[]) {
list_init(&freelist, memory, N);
// print the freelist
list_print(&freelist);
//TODO: Create producer, transformer, and consumer
//TODO: Create POSIX shared memory, and put memory, freelist, list1, list2 in it
//TODO: Use pthreads to split execution
//TODO: Implement a semaphore solution to the problem
}