About 94 results
Open links in new tab
  1. std::raise - cppreference.com

    Sends signal sig to the program. The signal handler (specified using the std::signal () function) is invoked. If the user-defined signal handling strategy is not set using std::signal () yet, it is …

  2. raise - cppreference.com

    Sends signal sig to the program. The signal handler, specified using signal (), is invoked. If the user-defined signal handling strategy is not set using signal () yet, it is implementation-defined whether the …

  3. std::pow, std::powf, std::powl - cppreference.com

    1-4) Computes the value of base raised to the power exp. The library provides overloads of std::pow for all cv-unqualified floating-point types as the type of the parameters base and exp.(since C++23)

  4. std::signal - cppreference.com

    If the user defined function returns when handling SIGFPE, SIGILL, SIGSEGV or any other implementation-defined signal specifying a computational exception, the behavior is undefined. If the …

  5. cppreference.com

    What links here Related changes Upload file Special pages Printable version Permanent link Page information

  6. SIGTERM, SIGSEGV, SIGINT, SIGILL, SIGABRT, SIGFPE

    Each of the above macro constants expands to an integer constant expression with distinct values, which represent different signals sent to the program.

  7. Multi-threaded executions and data races - cppreference.com

    Data races Different threads of execution are always allowed to access (read and modify) different memory locations concurrently, with no interference and no synchronization requirements. Two …

  8. Throwing exceptions - cppreference.com

    Throwing an exception transfers control to a handler. An exception can be thrown from throw expressions, the following contexts may also throw exceptions: allocation functions dynamic_cast …

  9. pow, powf, powl - cppreference.com

    4) Type-generic macro: If any argument has type long double, powl is called. Otherwise, if any argument has integer type or has type double, pow is called. Otherwise, powf is called. If at least one argument …

  10. Standard library header <csignal> - cppreference.com

    This header was originally in the C standard library as <signal.h>. This header is part of the program support library.