X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fpbd%2Fpool.h;h=1afa8d7af9fc13a43affeafc06c6c7f6b397a338;hb=78a3683233bc13e58badd7adb9b86995b81eb0c7;hp=8aff60fb6a6ace9693d3cab3d6f63f418e70ffba;hpb=4dc63966f0872efe768dad61eb9b8785d06b92d1;p=ardour.git diff --git a/libs/pbd/pbd/pool.h b/libs/pbd/pbd/pool.h index 8aff60fb6a..1afa8d7af9 100644 --- a/libs/pbd/pbd/pool.h +++ b/libs/pbd/pbd/pool.h @@ -39,14 +39,14 @@ class LIBPBD_API Pool virtual void *alloc (); virtual void release (void *); - + std::string name() const { return _name; } guint available() const { return free_list.read_space(); } guint used() const { return free_list.bufsize() - available(); } guint total() const { return free_list.bufsize(); } - + protected: - RingBuffer free_list; ///< a list of pointers to free items within block + PBD::RingBuffer free_list; ///< a list of pointers to free items within block std::string _name; private: @@ -116,7 +116,7 @@ class LIBPBD_API CrossThreadPool : public Pool void flush_pending_with_ev (void*); private: - RingBuffer pending; + PBD::RingBuffer pending; PerThreadPool* _parent; }; @@ -125,24 +125,24 @@ class LIBPBD_API CrossThreadPool : public Pool */ class LIBPBD_API PerThreadPool { - public: +public: PerThreadPool (); - const Glib::Threads::Private& key() const { return _key; } + const Glib::Threads::Private& key() const { return _key; } void create_per_thread_pool (std::string name, unsigned long item_size, unsigned long nitems); CrossThreadPool* per_thread_pool (bool must_exist = true); bool has_per_thread_pool (); - void set_trash (RingBuffer* t); + void set_trash (PBD::RingBuffer* t); void add_to_trash (CrossThreadPool *); - private: - Glib::Threads::Private _key; +private: + Glib::Threads::Private _key; std::string _name; /** mutex to protect either changes to the _trash variable, or writes to the RingBuffer */ - Glib::Threads::Mutex _trash_mutex; - RingBuffer* _trash; + Glib::Threads::Mutex _trash_mutex; + PBD::RingBuffer* _trash; }; #endif // __qm_pool_h__