The existing cpp-level checks using PR_MPX_ENABLE_MANAGEMENT aren't sufficient,
as this isn't defined for linux kernel versions below 3.19.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Couldn't we just update the cpp file to do
#ifndef PR_MPX_ENABLE_MANAGEMENT return -1; #endif
?
Comment Actions
I don't like either of the solutions too much, but this one is at least less code. :)