|
| void | setTraceType (traceType_t type) |
| | Set the type of output trace.
|
| traceType_t | getTraceType () |
| | Get the type of the output trace.
|
| char * | getName (int procRk) |
| | To get the name of the file to give to the addCont function for processors.
|
| int | bufferedModeActivated () |
| | Check wether the buffered-mode is activated.
|
| trace_return_t | initTrace (const char *filename, int rank, gtg_flag_t flags) |
| | Initialize a trace.
|
| trace_return_t | endTrace () |
| | Finalize a trace.
|
| trace_return_t | setCompress (int val) |
| | Enable trace compression (only available for OTF traces).
|
| trace_return_t | addContType (const char *alias, const char *contType, const char *name) |
| | Add a Container Type.
|
| trace_return_t | addStateType (const char *alias, const char *contType, const char *name) |
| | Add a State Type.
|
| trace_return_t | addEventType (const char *alias, const char *contType, const char *name) |
| | Add an Event Type.
|
| trace_return_t | addLinkType (const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType) |
| | Add a Link Type.
|
| trace_return_t | addVarType (const char *alias, const char *name, const char *contType) |
| | Add a Variable Type.
|
| trace_return_t | addEntityValue (const char *alias, const char *entType, const char *name, gtg_color_t p_color) |
| | Add an Entity Value.
|
| trace_return_t | addContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file) |
| | Add a Container.
|
| trace_return_t | destroyContainer (varPrec time, const char *name, const char *type) |
| | Destroy a Container.
|
| trace_return_t | setState (varPrec time, const char *type, const char *cont, const char *val) |
| | Set the State of a Container.
|
| trace_return_t | pushState (varPrec time, const char *type, const char *cont, const char *val) |
| | Save the current State on a stack and change the State of a Container.
|
| trace_return_t | popState (varPrec time, const char *type, const char *cont) |
| | Revert the State of a Container to its previous value.
|
| trace_return_t | addEvent (varPrec time, const char *type, const char *cont, const char *val) |
| | Add an Event.
|
| trace_return_t | startLink (varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key) |
| | Start a Link.
|
| trace_return_t | endLink (varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key) |
| | End a Link.
|
| trace_return_t | setVar (varPrec time, const char *type, const char *cont, varPrec val) |
| | Set a Variable value.
|
| trace_return_t | addVar (varPrec time, const char *type, const char *cont, varPrec val) |
| | Add a value to a Variable.
|
| trace_return_t | subVar (varPrec time, const char *type, const char *cont, varPrec val) |
| | Substract a value from a Variable.
|
| trace_return_t | AddComment (const char *comment) |
| | Add some Comment in Trace file.
|