Home
Library
Online Compilers
Jobs
Whiteboard
Tools
Articles
Write & Earn
Courses
Certifications
Menu
Categories
Login
Switch theme
Category
AI, ML, and Data Science
Programming Languages
Web Development Languages
DevOps
Databases
Computer Science Subjects
Python Technologies
Software Testing
Cyber Security
All Categories
Back
Artificial Intelligence
Machine Learning
ML With Python
Data Science
Statistics
NLP
Neural Networks
TensorFlow
PyTorch
Matplotlib
NumPy
Pandas
SciPy
Big Data Analytics
See all
Back
Python
Java
C++
C
PHP
Go
Kotlin
R
ASP.Net
C#.Net
VB.Net
Scala
Swift
Perl
Ruby
Rust
Lua
See all
Back
HTML
CSS
JavaScript
jQuery
ReactJs
NodeJs
Wordpress
AngularJs
PHP
Django
JSON
Codeigniter
TypeScript
Ajax
Bootstrap
Sass
AppML
See all
Back
GIT
AWS
Docker
Kubernetes
Azure
Gitlab
Jira
Gerrit
Ansible
Bugzilla
Chef
SaltStack
OpenShift
Puppet
UNIX
Linux Admin
Ubuntu
See all
Back
DBMS
SQL
PL/SQL
MySQL
TinyDB
SQL Server
MongoDB
PostgreSQL
SQLite
Redis
PHP MyAdmin
MariaDB
CouchDB
DB2
See all
Back
Computer Fundamentals
Operating System
DBMS
DSA
Computer Networks
Software Engineering
Computer Graphics
Data Mining
Digital Marketing
SEO
Digital Circuits
Discrete Mathematics
Cryptography
Cloud Computing
Compiler Design
Embedded Systems
Microprocessors
See all
Back
Python
NumPy
Pandas
Matplotlib
Django
PyQt
PyCharm
Pillow
OpenCV
Seaborn
ML with Python
SciPy
See all
Back
Software Testing
Jira
Selenium
TestRail
Postman
Cucumber
Cypress
Watir
Agile
jMeter
Back
Blockchain
Information Security
Computer Security
Internet Security
Network Security
Wireless Security
Library
Courses
Certifications
Login
Menu
Show search
SQL
HTML
CSS
Javascript
Python
Java
C
C++
PHP
Scala
C#
Tailwind CSS
Node.js
MySQL
MongoDB
PL/SQL
Swift
Bootstrap
R
Machine Learning
Blockchain
Angular
React Native
Computer Fundamentals
Compiler Design
Operating System
Data Structure and Algorithms
Computer Network
DBMS
Excel
精选阅读
UPSC IAS 考试笔记
开发者最佳实践
问答
有效的简历撰写
人力资源面试问题
计算机词汇表
名人录
idle() - Unix,Linux 系统调用
网络
本网站
Unix 初学者指南
Unix - 首页
Unix - 入门
Unix - 文件管理
Unix - 目录
Unix - 文件权限
Unix - 环境
Unix - 基本实用程序
Unix - 管道和过滤器
Unix - 进程
Unix - 通信
Unix - vi 编辑器
Unix Shell 编程
Unix - 什么是 Shell?
Unix - 使用变量
Unix - 特殊变量
Unix - 使用数组
Unix - 基本运算符
Unix - 决策制定
Unix - Shell 循环
Unix - 循环控制
Unix - Shell 替换
Unix - 引号机制
Unix - I/O 重定向
Unix - Shell 函数
Unix - 手册页帮助
高级 Unix
Unix - 正则表达式
Unix - 文件系统基础
Unix - 用户管理
Unix - 系统性能
Unix - 系统日志
Unix - 信号和陷阱
Unix 有用参考
Unix - 有用命令
Unix - 快速指南
Unix - 内置函数
Unix - 系统调用
Unix - 命令列表
Unix 有用资源
Unix 有用资源
精选阅读
计算机词汇表
名人录
版权所有 © 2014 tutorialspoint
首页
参考
讨论论坛
关于TP
idle() - Unix,Linux 系统调用
广告
名称
idle - 使进程 0 处于空闲状态
语法
#include <unistd.h>
int idle(void);
描述
idle
() 是引导过程中使用的内部系统调用。它将进程的页面标记为可交换,降低其优先级,并进入主调度循环。
idle
() 永远不会返回。
只有进程 0 可以调用
idle
()。任何用户进程,即使是具有超级用户权限的进程,都将收到
EPERM
。
返回值
对于进程 0,
idle
() 永远不会返回,对于用户进程,始终返回 -1。
错误
标签
描述
EPERM
对于用户进程,始终如此。
符合标准
此函数是 Linux 特定的,不应在旨在可移植的程序中使用。
注释
从 2.3.13 开始,此系统调用不再存在。
广告
广告
打印页面
上一页
下一页
广告