Skip to content

Commit

Permalink
Fix build error with glibc 2.26 and above
Browse files Browse the repository at this point in the history
SIGUNUSED has been removed and causes compilation errors. Based on
the name it was probaably never used anyway, so just remove it.
  • Loading branch information
mattiasflodin committed Dec 31, 2018
1 parent e8d38a7 commit c1d0932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reckless/src/crash_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ std::initializer_list<int> const signals = {
// SUSv2 + POSIX.1-2001 signals
SIGBUS, SIGPOLL, SIGPROF, SIGSYS, SIGTRAP, SIGVTALRM, SIGXCPU, SIGXFSZ,
// Various other signals
SIGIOT, SIGSTKFLT, SIGIO, SIGPWR, SIGUNUSED,
SIGIOT, SIGSTKFLT, SIGIO, SIGPWR,
};

std::vector<basic_log*> g_logs;
Expand Down

0 comments on commit c1d0932

Please sign in to comment.