Opened 9 years ago
Closed 9 years ago
#9408 closed Bugs (fixed)
Android does not support XSI_SHARED_MEMORY_OBJECTS
| Reported by: | Antony Polukhin | Owned by: | Ion Gaztañaga |
|---|---|---|---|
| Milestone: | To Be Determined | Component: | interprocess |
| Version: | Boost 1.55.0 | Severity: | Problem |
| Keywords: | Cc: |
Description
BOOST_INTERPROCESS_XSI_SHARED_MEMORY_OBJECTS must not be defined on Android platform.
boost/interprocess/detail/workaround.hpp (line 75) must be patched in the following way:
//Check for XSI shared memory objects. They are available in nearly all UNIX platforms
#if !defined(__QNXNTO__) && !defined(__ANDROID__)
#define BOOST_INTERPROCESS_XSI_SHARED_MEMORY_OBJECTS
#endif
Note:
See TracTickets
for help on using tickets.

(In [86765]) Fixes #9408 ("Android does not support XSI_SHARED_MEMORY_OBJECTS")