DriveHQ Start Menu
Cloud Drive Mapping
Folder Sync
Cloud Backup
True Drop Box
FTP/SFTP Hosting
Group Account
DriveHQ Start Menu
Online File Server
My Storage
|
Manage Shares
|
Publishes
|
Drop Boxes
|
Group Account
WebDAV Drive Mapping
Cloud Drive Home
|
WebDAV Guide
|
Drive Mapping Tool
|
Drive Mapping URL
Complete Data Backup
Backup Guide
|
Online Backup Tool
|
Cloud-to-Cloud Backup
FTP, Email & Web Service
FTP Home
|
FTP Hosting FAQ
|
Email Hosting
|
EmailManager
|
Web Hosting
Help & Resources
About
|
Enterprise Service
|
Partnership
|
Comparisons
|
Support
Quick Links
Security and Privacy
Download Software
Service Manual
Use Cases
Group Account
Online Help
Blog
Contact
Cloud Surveillance
Sign Up
Login
Features
Business Features
Online File Server
FTP Hosting
Cloud Drive Mapping
Cloud File Backup
Email Backup & Hosting
Cloud File Sharing
Folder Synchronization
Group Management
True Drop Box
Full-text Search
AD Integration/SSO
Mobile Access
IP Camera & DVR Solution
More...
Personal Features
Personal Cloud Drive
Backup All Devices
Mobile APPs
Personal Web Hosting
Sub-Account (for Kids)
Home/PC/Kids Monitoring
More...
Software
DriveHQ Drive Mapping Tool
DriveHQ FileManager
DriveHQ Online Backup
DriveHQ Mobile Apps
Pricing
Business Plans & Pricing
Personal Plans & Pricing
Price Comparison with Others
Feature Comparison with Others
Install Mobile App
Sign up
Creating account...
Invalid character in username! Only 0-9, a-z, A-Z, _, -, . allowed.
Username is required!
Invalid email address!
E-mail is required!
Password is required!
Password is invalid!
Password and confirmation do not match.
Confirm password is required!
I accept
Membership Agreement
Please read the Membership Agreement and check "I accept"!
Free Quick Sign-up
Sign-up Page
Log in
Signing in...
Username or e-mail address is required!
Password is required!
Keep me logged in
Quick Login
Forgot Password
Up
Upload
Download
Share
Publish
New Folder
New File
Copy
Cut
Delete
Paste
Rate
Upgrade
Rotate
Effect
Edit
Slide
History
#ifndef BOOST_THREAD_THREAD_PTHREAD_HPP #define BOOST_THREAD_THREAD_PTHREAD_HPP // Copyright (C) 2001-2003 // William E. Kempf // Copyright (C) 2007 Anthony Williams // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include "thread_data.hpp" #include
#ifdef BOOST_MSVC #pragma warning(push) #pragma warning(disable:4251) #endif namespace boost { class thread; namespace detail { class thread_id; } namespace this_thread { BOOST_THREAD_DECL detail::thread_id get_id(); } namespace detail { class thread_id { private: detail::thread_data_ptr thread_data; thread_id(detail::thread_data_ptr thread_data_): thread_data(thread_data_) {} friend class boost::thread; friend thread_id this_thread::get_id(); public: thread_id(): thread_data() {} bool operator==(const thread_id& y) const { return thread_data==y.thread_data; } bool operator!=(const thread_id& y) const { return thread_data!=y.thread_data; } bool operator<(const thread_id& y) const { return thread_data
(const thread_id& y) const { return y.thread_data
=(const thread_id& y) const { return !(thread_data
friend std::basic_ostream
& operator<<(std::basic_ostream
& os, const thread_id& x) { if(x.thread_data) { return os<
struct thread_data: detail::thread_data_base { F f; thread_data(F f_): f(f_) {} thread_data(detail::thread_move_t
f_): f(f_) {} void run() { f(); } }; mutable boost::mutex thread_info_mutex; detail::thread_data_ptr thread_info; void start_thread(); explicit thread(detail::thread_data_ptr data); detail::thread_data_ptr get_thread_info() const; public: thread(); ~thread(); template
explicit thread(F f): thread_info(new thread_data
(f)) { start_thread(); } template
thread(detail::thread_move_t
f): thread_info(new thread_data
(f)) { start_thread(); } thread(detail::thread_move_t
x); thread& operator=(detail::thread_move_t
x); operator detail::thread_move_t
(); detail::thread_move_t
move(); void swap(thread& x); typedef detail::thread_id id; id get_id() const; bool joinable() const; void join(); bool timed_join(const system_time& wait_until); template
inline bool timed_join(TimeDuration const& rel_time) { return timed_join(get_system_time()+rel_time); } void detach(); static unsigned hardware_concurrency(); // backwards compatibility bool operator==(const thread& other) const; bool operator!=(const thread& other) const; static void sleep(const system_time& xt); static void yield(); // extensions void interrupt(); bool interruption_requested() const; }; inline detail::thread_move_t
move(thread& x) { return x.move(); } inline detail::thread_move_t
move(detail::thread_move_t
x) { return x; } template
struct thread::thread_data
>: detail::thread_data_base { F& f; thread_data(boost::reference_wrapper
f_): f(f_) {} void run() { f(); } }; namespace this_thread { class BOOST_THREAD_DECL disable_interruption { disable_interruption(const disable_interruption&); disable_interruption& operator=(const disable_interruption&); bool interruption_was_enabled; friend class restore_interruption; public: disable_interruption(); ~disable_interruption(); }; class BOOST_THREAD_DECL restore_interruption { restore_interruption(const restore_interruption&); restore_interruption& operator=(const restore_interruption&); public: explicit restore_interruption(disable_interruption& d); ~restore_interruption(); }; BOOST_THREAD_DECL thread::id get_id(); BOOST_THREAD_DECL void interruption_point(); BOOST_THREAD_DECL bool interruption_enabled(); BOOST_THREAD_DECL bool interruption_requested(); inline void yield() { thread::yield(); } template
inline void sleep(TimeDuration const& rel_time) { thread::sleep(get_system_time()+rel_time); } } namespace detail { struct thread_exit_function_base { virtual ~thread_exit_function_base() {} virtual void operator()() const=0; }; template
struct thread_exit_function: thread_exit_function_base { F f; thread_exit_function(F f_): f(f_) {} void operator()() const { f(); } }; BOOST_THREAD_DECL void add_thread_exit_function(thread_exit_function_base*); } namespace this_thread { template
inline void at_thread_exit(F f) { detail::thread_exit_function_base* const thread_exit_func=new detail::thread_exit_function
(f); detail::add_thread_exit_function(thread_exit_func); } } class BOOST_THREAD_DECL thread_group { public: thread_group(); ~thread_group(); thread* create_thread(const function0
& threadfunc); void add_thread(thread* thrd); void remove_thread(thread* thrd); void join_all(); void interrupt_all(); size_t size() const; private: thread_group(thread_group&); void operator=(thread_group&); std::list
m_threads; mutex m_mutex; }; } // namespace boost #ifdef BOOST_MSVC #pragma warning(pop) #endif #endif
thread.hpp
Page URL
File URL
Prev
8/11
Next
Download
( 8 KB )
Note: The DriveHQ service banners will NOT be displayed if the file owner is a paid member.
Comments
Total ratings:
0
Average rating:
Not Rated
Would you like to comment?
Join DriveHQ
for a free account, or
Logon
if you are already a member.