(file) Return to Threads.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/Threads.h between version 1.1.2.4 and 1.1.2.6

version 1.1.2.4, 2006/07/28 20:46:41 version 1.1.2.6, 2006/07/28 21:19:53
Line 186 
Line 186 
  
     static void cleanup_pop(int execute);     static void cleanup_pop(int execute);
  
     static Uint32 id(const ThreadType& x);      static Uint32 id(const ThreadType& x = Threads::self());
  
     static void clear(ThreadType& x);     static void clear(ThreadType& x);
 }; };
Line 201 
Line 201 
  
 inline bool Threads::equal(ThreadType x, ThreadType y) inline bool Threads::equal(ThreadType x, ThreadType y)
 { {
     return pthread_equal(x.thread(), y.thread());      return pthread_equal(x.handle(), y.handle());
 } }
  
 inline void Threads::exit(ThreadReturnType rc) inline void Threads::exit(ThreadReturnType rc)
Line 211 
Line 211 
  
 inline void Threads::cancel(ThreadType th, ThreadReturnType rc) inline void Threads::cancel(ThreadType th, ThreadReturnType rc)
 { {
     pthread_cancel(th.thread());      pthread_cancel(th.handle());
 } }
  
 inline void Threads::yield() inline void Threads::yield()


Legend:
Removed from v.1.1.2.4  
changed lines
  Added in v.1.1.2.6

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2