fix doc example typo
[boost.git] / boost / asio / detail / local_free_on_block_exit.hpp
blobe0b4db0eec13d7c0b4e4095ad23194fd7723b779
1 //
2 // local_free_on_block_exit.hpp
3 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6 //
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 //
11 #ifndef BOOST_ASIO_DETAIL_LOCAL_FREE_ON_BLOCK_EXIT_HPP
12 #define BOOST_ASIO_DETAIL_LOCAL_FREE_ON_BLOCK_EXIT_HPP
14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
15 # pragma once
16 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
18 #include <boost/asio/detail/push_options.hpp>
20 #include <boost/asio/detail/push_options.hpp>
21 #include <boost/config.hpp>
22 #include <boost/asio/detail/pop_options.hpp>
24 #if defined(BOOST_WINDOWS) || defined(__CYGWIN__)
26 #include <boost/asio/detail/noncopyable.hpp>
27 #include <boost/asio/detail/socket_types.hpp>
29 namespace boost {
30 namespace asio {
31 namespace detail {
33 class local_free_on_block_exit
34 : private noncopyable
36 public:
37 // Constructor blocks all signals for the calling thread.
38 explicit local_free_on_block_exit(void* p)
39 : p_(p)
43 // Destructor restores the previous signal mask.
44 ~local_free_on_block_exit()
46 ::LocalFree(p_);
49 private:
50 void* p_;
53 } // namespace detail
54 } // namespace asio
55 } // namespace boost
57 #endif // defined(BOOST_WINDOWS) || defined(__CYGWIN__)
59 #include <boost/asio/detail/pop_options.hpp>
61 #endif // BOOST_ASIO_DETAIL_LOCAL_FREE_ON_BLOCK_EXIT_HPP