/* -*- C++ -*- */ //============================================================================= /** * @file TSS_Task.h * * @author Prashant Jain and Doug Schmidt */ //============================================================================= #include "ace/config-all.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "ace/Token.h" #include "ace/Atomic_Op.h" class Test_Task { public: Test_Task (void); ~Test_Task (void); int open (void *arg); static void *svc (void *arg); static ACE_Atomic_Op wait_count_; static ACE_Atomic_Op max_count_; private: static ACE_Atomic_Op count_; };