5

Boost version - 1.47 I can not find boost::interprocess::interprocess_sharable_mutex, but it looks like it is forward declared. Is this really supported ?

I can see that boost::interprocess::interprocess_upgradable_mutex is forward declared and it is also defined as well. However, I am not able to find a corresponding condition variable with which I can use this mutex. Any ideas ?

ildjarn
  • 62,044
  • 9
  • 127
  • 211

1 Answers1

3

I know this is an old question, but I was just looking for this myself and came upon this question and this discussion on the Boost Users mailing list that effectively says, "No, you can't." boost::interprocess::interprocess_condition can only be used with the standard mutex. :(

Aaron D. Marasco
  • 6,506
  • 3
  • 26
  • 39