As a part of my assignment, I have to implement a scheduling class. I have written two syscalls, to record the sequence of the processes scheduled by kernel. Based on that data, I have to conclude, if it is Global or Local Scheduling. 1. I have taken and printed jiffies, pid, tid to kernel space. 2. By observing jiffies and sequence of pid and tids, I have to conclude if its global or local scheduling. 3. I have to know the time quantum that kernel allocates for each process.
My Question: Where can I look for that time quantum?