~ubuntu-branches/ubuntu/wily/ruby-passenger/wily-proposed

« back to all changes in this revision

Viewing changes to ext/boost/thread/lock_options.hpp

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2013-11-23 23:50:02 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20131123235002-8fdhsq7afj15o2z2
Tags: 4.0.25-1
* New upstream release.
* Refresh fix_install_path.patch.
* Build for Ruby 2.0 instead of 1.8. (Closes: #725591)
* Add fix_ftbfs_fortify_source.patch.
* Install passenger template files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Distributed under the Boost Software License, Version 1.0. (See
 
2
// accompanying file LICENSE_1_0.txt or copy at
 
3
// http://www.boost.org/LICENSE_1_0.txt)
 
4
// (C) Copyright 2007 Anthony Williams
 
5
// (C) Copyright 2011-2012 Vicente J. Botet Escriba
 
6
 
 
7
#ifndef BOOST_THREAD_LOCK_OPTIONS_HPP
 
8
#define BOOST_THREAD_LOCK_OPTIONS_HPP
 
9
 
 
10
#include <boost/config/abi_prefix.hpp>
 
11
 
 
12
namespace boost
 
13
{
 
14
  struct defer_lock_t
 
15
  {
 
16
  };
 
17
  struct try_to_lock_t
 
18
  {
 
19
  };
 
20
  struct adopt_lock_t
 
21
  {
 
22
  };
 
23
 
 
24
  BOOST_CONSTEXPR_OR_CONST defer_lock_t defer_lock = {};
 
25
  BOOST_CONSTEXPR_OR_CONST try_to_lock_t try_to_lock = {};
 
26
  BOOST_CONSTEXPR_OR_CONST adopt_lock_t adopt_lock = {};
 
27
 
 
28
}
 
29
#include <boost/config/abi_suffix.hpp>
 
30
 
 
31
#endif