123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- #ifndef BOOST_INTERPROCESS_SEMAPHORE_HPP
- #define BOOST_INTERPROCESS_SEMAPHORE_HPP
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- #ifndef BOOST_CONFIG_HPP
- # include <boost/config.hpp>
- #endif
- #
- #if defined(BOOST_HAS_PRAGMA_ONCE)
- # pragma once
- #endif
- #include <boost/interprocess/detail/config_begin.hpp>
- #include <boost/interprocess/detail/workaround.hpp>
- #include <boost/interprocess/creation_tags.hpp>
- #include <boost/interprocess/exceptions.hpp>
- #include <boost/interprocess/sync/detail/locks.hpp>
- #include <boost/interprocess/sync/detail/common_algorithms.hpp>
- #if !defined(BOOST_INTERPROCESS_FORCE_GENERIC_EMULATION) && \
- defined(BOOST_INTERPROCESS_POSIX_PROCESS_SHARED) && \
- defined(BOOST_INTERPROCESS_POSIX_UNNAMED_SEMAPHORES)
- #include <boost/interprocess/sync/posix/semaphore.hpp>
- #define BOOST_INTERPROCESS_SEMAPHORE_USE_POSIX
- #elif !defined(BOOST_INTERPROCESS_FORCE_GENERIC_EMULATION) && defined (BOOST_INTERPROCESS_WINDOWS)
-
- #include <boost/interprocess/sync/windows/semaphore.hpp>
- #define BOOST_INTERPROCESS_SEMAPHORE_USE_WINAPI
- #else
-
- #include <boost/interprocess/sync/spin/semaphore.hpp>
- #endif
- #endif
- namespace boost {
- namespace interprocess {
- class interprocess_semaphore
- {
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
-
- interprocess_semaphore(const interprocess_semaphore &);
- interprocess_semaphore &operator=(const interprocess_semaphore &);
- #endif
- public:
-
-
- interprocess_semaphore(unsigned int initialCount);
-
-
- ~interprocess_semaphore();
-
-
-
- void post();
-
-
-
- void wait();
-
-
-
- bool try_wait();
-
-
-
-
-
- template<class TimePoint>
- bool timed_wait(const TimePoint &abs_time);
-
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- private:
- #if defined(BOOST_INTERPROCESS_SEMAPHORE_USE_POSIX)
- typedef ipcdetail::posix_semaphore internal_sem_t;
- #elif defined(BOOST_INTERPROCESS_SEMAPHORE_USE_WINAPI)
- typedef ipcdetail::winapi_semaphore internal_sem_t;
- #else
- typedef ipcdetail::spin_semaphore internal_sem_t;
- #endif
- internal_sem_t m_sem;
- #endif
- };
- }
- }
- namespace boost {
- namespace interprocess {
- inline interprocess_semaphore::interprocess_semaphore(unsigned int initialCount)
- : m_sem(initialCount)
- {}
- inline interprocess_semaphore::~interprocess_semaphore(){}
- inline void interprocess_semaphore::wait()
- {
- ipcdetail::lock_to_wait<internal_sem_t> ltw(m_sem);
- timeout_when_locking_aware_lock(ltw);
- }
- inline bool interprocess_semaphore::try_wait()
- { return m_sem.try_wait(); }
- template<class TimePoint>
- inline bool interprocess_semaphore::timed_wait(const TimePoint &abs_time)
- { return m_sem.timed_wait(abs_time); }
- inline void interprocess_semaphore::post()
- { m_sem.post(); }
- }
- }
- #include <boost/interprocess/detail/config_end.hpp>
- #endif
|