Query: tau_get_func_names
OS: debian
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
TAU_GET_FUNC_NAMES(3) TAU Instrumentation API TAU_GET_FUNC_NAMES(3)NAMETAU_GET_FUNC_NAMES - Gets the function namesSYNOPSISC/C++: TAU_GET_FUNC_NAMES(char **functionList, int numFuncs);DESCRIPTIONThis macro fills the funcList argument with the list of timer and routine names. It also records the number of routines active in the numFuncs argument.EXAMPLEC/C++ : const char ** functionList; int numOfFunctions; TAU_GET_FUNC_NAMES(functionList, numOfFunctions); for(int i=0;i<numOfFunctions;i++){ cout << "This function names so far are: " << functionList[i] << endl; }SEE ALSOTAU_GET_COUNTER_NAMES(3), TAU_GET_FUNC_VALS(3), TAU_DUMP_FUNC_NAMES(3), TAU_DUMP_FUNC_VALS(3) 08/31/2005 TAU_GET_FUNC_NAMES(3)