#include #include struct procinfos { //info about processes we need long studentID; //for the assignment testing struct proc_info proc; //process with pid or current process struct proc_info parent_proc; //parent process struct proc_info oldest_child_proc; //oldest child process }; struct proc_info { //info about a single process pid_t pid; //pid of the process char name[16]; //file name of the program executed }; asmlinkage long sys_get_proc_info(pid_t pid, s t r u c t procinfos * info){ }