00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00034
#if !defined( _THREADS_1__POSIX__OS_THREAD_ID_HPP_ )
00035
#define _THREADS_1__POSIX__OS_THREAD_ID_HPP_
00036
00037
#include <unistd.h>
00038
#include <pthread.h>
00039
00040
#include <threads_1/h/threads.hpp>
00041
00042
namespace threads_1
00043 {
00044
00048 class _os_thread_id_t
00049 {
00050
private :
00051 pthread_t m_id;
00052
00053
public :
00055
00058 _os_thread_id_t()
00059 {
00060 m_id = pthread_self();
00061 }
00062
00064 _os_thread_id_t(
00065
const _os_thread_id_t & o )
00066 {
00067 (*this) = o;
00068 }
00069
00070 ~
_os_thread_id_t()
00071 {
00072 }
00073
00075 _os_thread_id_t &
00076 operator=(
00077
const _os_thread_id_t & o )
00078 {
00079 m_id = o.
m_id;
00080 }
00081
00083
bool
00084 operator==(
const _os_thread_id_t & o )
const
00085
{
00086
return ( m_id == o.
m_id );
00087 }
00088
00090
bool
00091 operator!=(
const _os_thread_id_t & o )
const
00092
{
00093
return ( m_id != o.
m_id );
00094 }
00095
00097
bool
00098 operator<(
const _os_thread_id_t & o )
const
00099
{
00100
return ( m_id < o.
m_id );
00101 }
00102 };
00103
00104
00105 }
00106
00107
#endif