setperfcount.hh

来自「COPE the first practical network coding 」· HH 代码 · 共 50 行

HH
50
字号
#ifndef SETPERFCOUNT_HH#define SETPERFCOUNT_HH#include "elements/linuxmodule/perfcountuser.hh"/* * =c * SetPerfCount(TYPE) * =s profiling * stores Pentium Pro performance metric in annotation * =d * * Stores information about the Pentium Pro performance metric TYPE in each * packet. In combination with PerfCountAccum, this lets you measure how the * metric changes over the packet's lifetime. * * =n * * A packet has room for either exactly one cycle count or exactly one * performance metric. * * Valid performance metric names are C<BUS_TRAN_INVAL>, C<BUS_TRAN_MEM>, * C<DCU_MISS_OUTSTANDING>, C<IFU_FETCH>, C<IFU_FETCH_MISS>, C<IFU_MEM_STALL>, * C<INST_RETIRED>, C<L2_IFETCH>, C<L2_LD>, C<L2_LINES_IN>, C<L2_LINES_OUT>, * C<L2_LINES_OUTM>, and C<L2_RQSTS>. *  * =a PerfCountAccum, SetCycleCount, CycleCountAccum */class SetPerfCount : public PerfCountUser { public:    SetPerfCount();  ~SetPerfCount();    const char *class_name() const		{ return "SetPerfCount"; }  void *cast(const char *);  const char *processing() const		{ return AGNOSTIC; }  int configure(Vector<String> &, ErrorHandler *);    inline void smaction(Packet *);  void push(int, Packet *p);  Packet *pull(int); private:    int _which;};#endif

⌨️ 快捷键说明

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