Program support utilities
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
目录 |
[编辑] 程序终止
以下功能管理程序的终止和资源清理.
原文:
The following functions manage program termination and resource cleanup.
在头文件
<cstdlib> 中定义 | |
导致程序异常终止(不清洗) 原文: causes abnormal program termination (without cleaning up) (函数) | |
清理,会导致正常的程序终止 原文: causes normal program termination with cleaning up (函数) | |
(C++11) |
没有完全清理,会导致正常的程序终止 原文: causes normal program termination without completely cleaning up (函数) |
(C++11) |
没有清理,会导致正常的程序终止 原文: causes normal program termination without cleaning up (函数) |
(函数) | |
(C++11) |
注册quick_exit调用一个函数被调用 原文: registers a function to be called on quick_exit invocation (函数) |
表示执行程序执行状态 原文: indicates program execution execution status (常量宏) |
[编辑] 与环境沟通
调用主机环境的命令处理器 原文: calls the host environment's command processor (函数) | |
访问列表中的环境变量 原文: access to the list of environment variables (函数) |
[编辑] 信号
提供了几个功能和信号管理的宏观常数.
原文:
Several functions and macro constants for signal management are provided.
在头文件
<csignal> 中定义 | |
设置一个特定信号的信号处理程序 原文: sets a signal handler for particular signal (函数) | |
运行特定信号的信号处理程序 原文: runs the signal handler for particular signal (函数) | |
整数类型,它可以作为一个原子实体从一个异步信号处理程序来访问 原文: the integer type that can be accessed as an atomic entity from an asynchronous signal handler (typedef) | |
定义信号处理策略 (常量宏) | |
(常量宏) | |
| |
定义信号类型 (常量宏) |
[编辑] 非本地跳跃
在头文件
<csetjmp> 中定义 | |
保存上下文 (函数宏) | |
跳转到指定的位置 (函数) | |
| |
执行上下文的类型 (typedef) |