X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..effadf994078b5f7bbc589d3ac0ba2aae8aaa59f:/doc/doxygen/inside_extending.doc diff --git a/doc/doxygen/inside_extending.doc b/doc/doxygen/inside_extending.doc index a0a8a97856..e13c61cea6 100644 --- a/doc/doxygen/inside_extending.doc +++ b/doc/doxygen/inside_extending.doc @@ -108,7 +108,7 @@ initialization function. s_surf_model_description_t surf_plugin_description[] = { {"Energy", "Cpu energy consumption.", - sg_energy_plugin_init}, + sg_host_energy_plugin_init}, {"MyNetworkPlugin", "My network plugin.", sg_my_network_plugin_init}, @@ -160,13 +160,13 @@ the simcall definitions from src/simix/simcalls.in, checks that both `simcall_()` and `simcall_HANDLER()` are defined somewhere, and generates the following files: -- smx_popping_accessors.h: +- popping_accessors.hpp: Helper functions to get and set simcall arguments and results -- smx_popping_bodies.cpp: +- popping_bodies.cpp: The BODY function of each simcall -- smx_popping_enum.c: +- popping_enum.h: Definition of type `enum e_smx_simcall_t` (one value per existing simcall) -- smx_popping_generated.cpp: +- popping_generated.cpp: Definitions of `simcall_names[]` (debug name of each simcall), and SIMIX_simcall_enter() that deals with the simcall from within the kernel