Skip to content
Snippets Groups Projects
Commit abea769b authored by Joe Sylve's avatar Joe Sylve Committed by Andy Getz
Browse files

Fix ABSL_HAVE_ALARM check on mingw (#341)

* Fix ABSL_HAVE_ALARM check on mingw
parent 25597bdf
Branches master
No related tags found
No related merge requests found
......@@ -334,6 +334,11 @@
#define ABSL_HAVE_ALARM 1
#elif defined(_MSC_VER)
// feature tests for Microsoft's library
#elif defined(__MINGW32__)
// mingw32 doesn't provide alarm(2):
// https://osdn.net/projects/mingw/scm/git/mingw-org-wsl/blobs/5.2-trunk/mingwrt/include/unistd.h
// mingw-w64 provides a no-op implementation:
// https://sourceforge.net/p/mingw-w64/mingw-w64/ci/master/tree/mingw-w64-crt/misc/alarm.c
#elif defined(__EMSCRIPTEN__)
// emscripten doesn't support signals
#elif defined(__Fuchsia__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment