unix/Daemon: define WCOREDUMP() for platforms that don't support it

Haiku does not dump core, it just starts the debugger.
This commit is contained in:
François Revol 2015-09-17 22:18:08 +02:00 committed by Max Kellermann
parent cd2e8c6ef1
commit 9d176e35d4

View File

@ -37,6 +37,10 @@
#include <grp.h>
#endif
#ifndef WCOREDUMP
#define WCOREDUMP(v) 0
#endif
static constexpr Domain daemon_domain("daemon");
#ifndef WIN32