|
SimGrid
3.18
Versatile Simulation of Distributed Systems
|
Functions | |
| int | simgrid::xbt::replay_runner (int argc, char *argv[]) |
| function used internally to actually run the replay More... | |
| void | xbt_replay_action_register (const char *action_name, action_fun function) |
| Registers a function to handle a kind of action. More... | |
| action_fun | xbt_replay_action_get (const char *action_name) |
| Get the function that was previously registered to handle a kind of action. More... | |
| int simgrid::xbt::replay_runner | ( | int | argc, |
| char * | argv[] | ||
| ) |
function used internally to actually run the replay
| void xbt_replay_action_register | ( | const char * | action_name, |
| action_fun | function | ||
| ) |
Registers a function to handle a kind of action.
Registers a function to handle a kind of action This table is then used by xbt_replay_action_runner
The argument of the function is the line describing the action, fields separated by spaces.
| action_name | the reference name of the action. |
| function | prototype given by the type: void...(const char** action) |
| action_fun xbt_replay_action_get | ( | const char * | action_name | ) |
Get the function that was previously registered to handle a kind of action.
This can be useful if you want to override and extend an existing action.