hpx/runtime_local/shutdown_function.hpp#

See Public API for a list of names and headers that are part of the public HPX API.

namespace hpx

Typedefs

typedef hpx::move_only_function<void()> shutdown_function_type#

The type of a function which is registered to be executed as a shutdown or pre-shutdown function.

Functions

void register_pre_shutdown_function(shutdown_function_type f)#

Add a function to be executed by a HPX thread during hpx::finalize() but guaranteed before any shutdown function is executed (system-wide)

Any of the functions registered with register_pre_shutdown_function are guaranteed to be executed by an HPX thread during the execution of hpx::finalize() before any of the registered shutdown functions are executed (see: hpx::register_shutdown_function()).

See also

hpx::register_shutdown_function()

Note

If this function is called while the pre-shutdown functions are being executed, or after that point, it will raise a invalid_status exception.

Parameters

f – [in] The function to be registered to run by an HPX thread as a pre-shutdown function.

void register_shutdown_function(shutdown_function_type f)#

Add a function to be executed by a HPX thread during hpx::finalize() but guaranteed after any pre-shutdown function is executed (system-wide)

Any of the functions registered with register_shutdown_function are guaranteed to be executed by an HPX thread during the execution of hpx::finalize() after any of the registered pre-shutdown functions are executed (see: hpx::register_pre_shutdown_function()).

See also

hpx::register_pre_shutdown_function()

Note

If this function is called while the shutdown functions are being executed, or after that point, it will raise a invalid_status exception.

Parameters

f – [in] The function to be registered to run by an HPX thread as a shutdown function.