diff options
Diffstat (limited to 'gnuradio-runtime/lib/vmcircbuf_mmap_shm_open.h')
-rw-r--r-- | gnuradio-runtime/lib/vmcircbuf_mmap_shm_open.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/gnuradio-runtime/lib/vmcircbuf_mmap_shm_open.h b/gnuradio-runtime/lib/vmcircbuf_mmap_shm_open.h index 60654ee46e..d0171e6c83 100644 --- a/gnuradio-runtime/lib/vmcircbuf_mmap_shm_open.h +++ b/gnuradio-runtime/lib/vmcircbuf_mmap_shm_open.h @@ -28,29 +28,29 @@ namespace gr { - /*! - * \brief concrete class to implement circular buffers with mmap and shm_open - * \ingroup internal - */ - class GR_RUNTIME_API vmcircbuf_mmap_shm_open : public gr::vmcircbuf - { - public: +/*! + * \brief concrete class to implement circular buffers with mmap and shm_open + * \ingroup internal + */ +class GR_RUNTIME_API vmcircbuf_mmap_shm_open : public gr::vmcircbuf +{ +public: vmcircbuf_mmap_shm_open(int size); virtual ~vmcircbuf_mmap_shm_open(); - }; +}; - /*! - * \brief concrete factory for circular buffers built using mmap and shm_open - */ - class GR_RUNTIME_API vmcircbuf_mmap_shm_open_factory : public gr::vmcircbuf_factory - { - private: - static gr::vmcircbuf_factory *s_the_factory; +/*! + * \brief concrete factory for circular buffers built using mmap and shm_open + */ +class GR_RUNTIME_API vmcircbuf_mmap_shm_open_factory : public gr::vmcircbuf_factory +{ +private: + static gr::vmcircbuf_factory* s_the_factory; - public: - static gr::vmcircbuf_factory *singleton(); +public: + static gr::vmcircbuf_factory* singleton(); - virtual const char *name() const { return "gr::vmcircbuf_mmap_shm_open_factory"; } + virtual const char* name() const { return "gr::vmcircbuf_mmap_shm_open_factory"; } /*! * \brief return granularity of mapping, typically equal to page size @@ -62,8 +62,8 @@ namespace gr { * * Call this to create a doubly mapped circular buffer. */ - virtual gr::vmcircbuf *make(int size); - }; + virtual gr::vmcircbuf* make(int size); +}; } /* namespace gr */ |