/* -*- C++ -*- */ // $Id$ // ============================================================================ // // = LIBRARY // tests // // = FILENAME // TSS_Task.h // // = AUTHOR // Prashant Jain and Doug Schmidt // // ============================================================================ #include "ace/Synch.h" #include "ace/Token.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_; };