Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion binsrc/virtuoso/viunix.c
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,10 @@ sigh_set_notifiers ()
i != SIGTERM &&
i != SIGHUP &&
i != SIGQUIT &&
i != SIGPIPE)
i != SIGPIPE &&
i != SIGSEGV) /* if we handle SIGSEGV, then crash backtrace
will point to us instead of to the real
crash place */
{
if (SIG_ERR == signal (i, sigh_report_and_forget))
{
Expand Down
2 changes: 1 addition & 1 deletion libsrc/Dk/Dktypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ typedef long long int64;
#endif
#endif

#ifdef WIN32
#if defined(WIN32) || (defined(SOLARIS) && defined(__GNUC__))
#define INFINITY (DBL_MAX+DBL_MAX)
#define NAN (INFINITY-INFINITY)
#endif
Expand Down