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 考试笔记
开发人员最佳实践
问答
有效的简历撰写
人力资源面试问题
计算机词汇表
名人录
sigreturn() - 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
sigreturn() - Unix、Linux 系统调用
广告
名称
sigreturn - 从信号处理程序返回并清理堆栈帧
语法
int sigreturn(unsigned long
__unused
);
描述
当 Linux 内核为信号处理程序创建堆栈帧时,会将对
sigreturn
() 的调用插入到堆栈帧中,以便信号处理程序在返回时调用
sigreturn
()。此插入的对
sigreturn
() 的调用会清理堆栈,以便进程可以从信号中断的地方重新开始。
返回值
sigreturn
() 永远不会返回。
警告
sigreturn
() 调用由内核用于实现信号处理程序。它
绝不
应该直接调用。更确切地说,
__unused
参数的具体用法取决于体系结构。
符合标准
sigreturn
() 是 Linux 特定的,不应在旨在可移植的程序中使用。
文件
/usr/src/linux/arch/i386/kernel/signal.c
/usr/src/linux/arch/alpha/kernel/entry.S
参见
kill (2)
signal (2)
广告
广告
打印页面
上一篇
下一篇
广告