博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux Kernel调度管理之唤醒指定进程
阅读量:4153 次
发布时间:2019-05-25

本文共 513 字,大约阅读时间需要 1 分钟。

/** * wake_up_process - Wake up a specific process * @p: The process to be woken up. * * Attempt to wake up the nominated process and move it to the set of runnable * processes. * * Return: 1 if the process was woken up, 0 if it was already running. * * It may be assumed that this function implies a write memory barrier before * changing the task state if and only if any tasks are woken up. */int wake_up_process(struct task_struct *p){	return try_to_wake_up(p, TASK_NORMAL, 0);}EXPORT_SYMBOL(wake_up_process);

转载地址:http://ogqti.baihongyu.com/

你可能感兴趣的文章
进程创建时文件系统处理
查看>>
进程创建时信号处理函数处理
查看>>
进程创建时信号处理
查看>>
进程创建时内存描述符处理
查看>>
进程创建时命名空间处理
查看>>
进程创建时IO处理
查看>>
进程创建时线程栈处理
查看>>
进程创建时pid分配
查看>>
进程创建时安全计算处理
查看>>
进程创建时cgroup处理
查看>>
进程创建时共享内存处理
查看>>
idle进程创建
查看>>
内核线程创建
查看>>
linux elf tool readelf
查看>>
linux tool objdump
查看>>
linux tool nm
查看>>
字节对齐
查看>>
Python-发邮件
查看>>
python写入csv文件的两种方法
查看>>
pandas学习笔记—dataframe与list相互转化
查看>>