~ubuntu-branches/ubuntu/wily/davix/wily

« back to all changes in this revision

Viewing changes to deps/boost_intern/boost/chrono/detail/inlined/process_cpu_clocks.hpp

  • Committer: Package Import Robot
  • Author(s): Mattias Ellert
  • Date: 2015-07-31 13:17:55 UTC
  • mfrom: (5.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20150731131755-mizprbmn7ogv33te
Tags: 0.4.1-1
* Update to version 0.4.1
* Implement Multi-Arch support

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//  boost process_cpu_clocks.cpp  -----------------------------------------------------------//
2
 
 
3
 
//  Copyright 2009-2010 Vicente J. Botet Escriba
4
 
 
5
 
//  Distributed under the Boost Software License, Version 1.0.
6
 
//  See http://www.boost.org/LICENSE_1_0.txt
7
 
 
8
 
//  See http://www.boost.org/libs/chrono for documentation.
9
 
 
10
 
//--------------------------------------------------------------------------------------//
11
 
#ifndef BOOST_CHRONO_DETAIL_INLINED_PROCESS_CPU_CLOCKS_HPP
12
 
#define BOOST_CHRONO_DETAIL_INLINED_PROCESS_CPU_CLOCKS_HPP
13
 
 
14
 
 
15
 
#include <boost/chrono/config.hpp>
16
 
#if defined(BOOST_CHRONO_HAS_PROCESS_CLOCKS)
17
 
 
18
 
#include <boost/version.hpp>
19
 
#include <boost/chrono/process_cpu_clocks.hpp>
20
 
#include <boost/throw_exception.hpp>
21
 
#include <boost/system/system_error.hpp>
22
 
 
23
 
//----------------------------------------------------------------------------//
24
 
//                                Windows                                     //
25
 
//----------------------------------------------------------------------------//
26
 
#if defined(BOOST_CHRONO_WINDOWS_API)
27
 
#include <boost/chrono/detail/inlined/win/process_cpu_clocks.hpp>
28
 
 
29
 
//----------------------------------------------------------------------------//
30
 
//                                 Mac                                        //
31
 
//----------------------------------------------------------------------------//
32
 
#elif defined(BOOST_CHRONO_MAC_API)
33
 
#include <boost/chrono/detail/inlined/mac/process_cpu_clocks.hpp>
34
 
 
35
 
//----------------------------------------------------------------------------//
36
 
//                                POSIX                                     //
37
 
//----------------------------------------------------------------------------//
38
 
#elif defined(BOOST_CHRONO_POSIX_API)
39
 
#include <boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp>
40
 
 
41
 
#endif  // POSIX
42
 
 
43
 
#endif
44
 
 
45
 
#endif