Пространства имён
Варианты
Действия

Program support utilities

Материал из cppreference.com

 
 
Утилиты библиотеки
Поддежка типов (базовые типы, RTTI, type traits)
Динамическое управление памятью
Обработка ошибок
Управление жизненным циклом программы
Функции с переменным числом аргументов
Дата и время
Функциональные объекты
initializer_list(C++11)
bitset
hash(C++11)
Реляционные операторы
rel_ops::operator!=
rel_ops::operator>
rel_ops::operator<=
rel_ops::operator>=
Пары и кортежи
pair
tuple(C++11)
piecewise_construct_t(C++11)
piecewise_construct(C++11)
Обмен, передача и перемещение
swap
forward(C++11)
move(C++11)
move_if_noexcept(C++11)
declval(C++11)
 
Коммунальные услуги Программа поддержки
Программа прекращения
Original:
Program termination
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
abort
exit
quick_exit(C++11)
_Exit(C++11)
Взаимодействие с окружающей средой
Original:
Communicating with the environment
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Сигналы
Original:
Signals
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Сигнал типа
Original:
Signal types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
SIGABRT
SIGFPE
SIGILL
SIGINT
SIGSEGV
SIGTERM
Нелокальные переходы
Original:
Non-local jumps
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
setjmp
longjmp
Типы
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
jmp_buf
 

Содержание

[править] Программа прекращения

Следующие функции управления завершение программы и ресурсы очистки.
Original:
The following functions manage program termination and resource cleanup.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Определено в файле <cstdlib>
вызывает аварийное завершение программы (без очистки)
Original:
causes abnormal program termination (without cleaning up)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]
вызывает нормальное завершение программы с уборку
Original:
causes normal program termination with cleaning up
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]
вызывает нормальное завершение программы без полной очистки
Original:
causes normal program termination without completely cleaning up
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]
(C++11)
вызывает нормальное завершение программы без очистки
Original:
causes normal program termination without cleaning up
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]
регистрирует функцию, которая вызывается при вызове exit()
Original:
registers a function to be called on exit() invocation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]
регистрирует функцию, которая вызывается при вызове quick_exit
Original:
registers a function to be called on quick_exit invocation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]
указывает выполнения программы состояние выполнения
Original:
indicates program execution execution status
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(константа-макрос) [edit]

[править] Взаимодействие с окружающей средой

вызывает командный процессор принимающей среды
Original:
calls the host environment's command processor
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]
доступ к списку переменных окружения
Original:
access to the list of environment variables
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]

[править] Сигналы

Некоторые функции и макро-констант для управления сигналами осуществляется.
Original:
Several functions and macro constants for signal management are provided.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Определено в файле <csignal>
устанавливает обработчик сигнала для конкретного сигнала
Original:
sets a signal handler for particular signal
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]
запускает обработчик сигнала для конкретного сигнала
Original:
runs the signal handler for particular signal
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]
целого типа, которые могут быть доступны как атомная лица от асинхронного обработчика сигнала
Original:
the integer type that can be accessed as an atomic entity from an asynchronous signal handler
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(определение типа)
определяет стратегию обработки сигнала
Original:
defines signal handling strategies
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(константа-макрос) [edit]
возвращаемым значением signal уточнив, что произошла ошибка
Original:
return value of signal specifying that an error was encountered
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(константа-макрос) [edit]
Сигнал типа
Original:
Signal types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
определяет типы сигналов
Original:
defines signal types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(константа-макрос) [edit]

[править] Нелокальные переходы

Определено в файле <csetjmp>
сохраняет контекст
Original:
saves the context
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция-макрос) [edit]
переход на указанное место
Original:
jumps to specified location
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(функция) [edit]
Типы
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Тип контексте выполнения
Original:
execution context type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(определение типа) [edit]