默默的一块石头
发布时间:2019-04-22 16:06:44
1.pipe fs initstatic int __init init_pipe_fs(void){ int err = register_filesystem(&pipe_fs_type); if (!err) { pipe_mnt = kern_mount(&pipe_fs_type); if (IS_ERR(pipe_mnt)) { err = PTR_ERR(pipe_mnt); unregister_filesystem(&pipe_fs_type); } } return err;}2.struct super_operations pipefs_.........【阅读全文】
发布时间:2019-04-20 11:37:58
CFS and Periodic Scheduler (scheduler_tick())In Linux Scheduler, Work In Progress on July 3, 2012 at 5:26 pmThis article explains scheduler_tick(), the periodic linux scheduler.What is scheduler_tick()It is function defined in sched.c which gets called.........【阅读全文】
发布时间:2019-04-19 14:35:44
Linux内核之实时进程调度和组调度作者:harvey wang 邮箱:harvey.perfect@gmail.com Linux支持三种进程调度策略,分别是SCHED_FIFO 、 SCHED_RR和SCHED_NORMAL。Linux支持两种类型的进程,实时进程和普通进程.........【阅读全文】