C语言代写

Operating Systems Assignment 3 Kernel

As you have seen in homework assignment 2, the kernel maintains the state for each process and records that state in the state field of the task_struct of the process. The state indicates whether the process is runnable or running (TASK_RUNNING), sleeping (TASK_INTERRUPTIBLE, TASK_UNINTERRUPTIBLE), stopped (__TASK_STOPPED), dead (TASK_DEAD), etc. When a process is dead, the […]

Operating Systems Assignment 3 Kernel Read More »

CS 341 System Programming MP Vector

Vector Assignment Graded files: vector.c sstring.c Learning Objectives The learning objectives for Vector are: Implementing a C++ style Vector in C Using Dynamic/Heap Memory Using malloc(), free(), calloc(), realloc() Function Pointers OOP in C String manipulation in C Groundwork For Shell You are an intern at Macrohard, where you’ll be writing a shell for everyone

CS 341 System Programming MP Vector Read More »