Skip to content
Snippets Groups Projects
Commit cad0de35 authored by Nick Mathewson's avatar Nick Mathewson :game_die: Committed by David Goulet
Browse files

Give a compile warning when we don't have any flags for minherit().

Part of ticket 30686.
parent 93ddc51c
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,11 @@
#endif
#if defined(HAVE_MINHERIT) && !defined(FLAG_ZERO) && !defined(FLAG_NOINHERIT)
#warn "minherit() is defined, but we couldn't find the right flag for it."
#warn "This is probably a bug in Tor's support for this platform."
#endif
/**
* Helper: try to prevent the <b>sz</b> bytes at <b>mem</b> from being swapped
* to disk. Return 0 on success or if the facility is not available on this
......
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