⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 benchmark_performance.h

📁 ACE自适配通信环境(ADAPTIVE Communication Environment)是可以自由使用、开放源码的面向对象(OO)框架(Framework)
💻 H
字号:
/* -*- C++ -*- */// Benchmark_Performance.h,v 1.7 2004/02/24 17:33:12 jwillemsen Exp/* Defines the class used to dynamically link in the benchmark tests */#ifndef ACE_BENCHMARK_PERFORMANCE_H#define ACE_BENCHMARK_PERFORMANCE_H#include "Synch_Lib/Benchmark_Base.h"#if defined (ACE_HAS_THREADS)#include "ace/svc_export.h"extern int buffer;extern ACE_Svc_Export int synch_count;class ACE_Svc_Export Benchmark_Performance_Test_Base : public Benchmark_Base{  // = TITLE  //     This class identifies itself as Benmarking Performance Test class.protected:  Benchmark_Performance_Test_Base (void);};class ACE_Svc_Export Benchmark_Performance : public Benchmark_Performance_Test_Base{  // = TITLE  //   Base class for all the timing tests.public:  // = Hooks inherited from ACE_Service_Object.  virtual int svc (void) = 0;  virtual int init (int, ACE_TCHAR *[]);  virtual int info (ACE_TCHAR **, size_t) const;  virtual int fini (void);  static void *svc_run (Benchmark_Performance *bp);  // = Set/get flag that controls how the tests are shut down  // gracefully.  static void done (sig_atomic_t);  static sig_atomic_t done (void);protected:  static sig_atomic_t done_;  // Keeps track if we are finished or not.};#endif /* ACE_HAS_THREADS */#endif /* ACE_BENCHMARK_PERFORMANCE_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -