Skip to content
Snippets Groups Projects
Commit 83c9d3b2 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

EHH: add sigFpe::ignore helper class (issue #897)

- convenient way to temporarily suspend the SIGFPE handler.
  Eg,

      // Normal code with SIGFPE enabled ...
      sigFpe::set();

      {
          // Ignore SIGFPE in this scope ...
          sigFpe::ignore noFpeHandling;
          ...
      }
parent d56744a6
Branches
Tags
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment