#define MAXFUNCS 1024 class FuncStats; class FuncNames { public: FuncNames(); string *GetName( int ifuncname ); FuncStats *GetStats( int ifuncname ); bool Find( string name, int *ifuncname ); int Insert( string name, int ifuncname ); void Print(); private: int nfuncs; string *names[MAXFUNCS]; FuncStats *stats[MAXFUNCS]; };
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 5389 | Shawn Hladky | Branching p4loga for modifications | ||
//guest/michael_shields/src/p4loga/funcnames.h | |||||
#1 | 1610 | Michael Shields |
Adding p4d log analyzer concocted by myself. Compiles and executes on Red Hat 6.0, 7.0, and probably a few other operating systems with perhaps a little help. Still needs comments. |