X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/40334ce6fe520b2fa7d1e240716e4f34a5fdc74e..d04fca45db7b95d95da6615e54a38c467ef3c230:/src/simix/simcalls.in diff --git a/src/simix/simcalls.in b/src/simix/simcalls.in index a707338f64..44465ba4e2 100644 --- a/src/simix/simcalls.in +++ b/src/simix/simcalls.in @@ -39,9 +39,12 @@ # Please note that in addition to completing this file with your new simcall, # you should complete the libsmx.c file by adding the corresponding function # (aka. stub). Anyway, if you omit to do it, the invocation of ./simcalls.py will notify you ;) -# Finally, if you want to remove an handler, it is important to remove although +# If you want to remove an handler, it is important to remove although # the corresponding code (simcall_HANDLER_name_of_simcall(xxx) (note that comment the code # is not sufficient, the python script does not check whether the code is commented or not). +# Last but not the least, you should declare the new simix call in +# ./include/simgrid/simix.h (otherwise you will get a warning at the +# compilation time) Func - host_get_by_name (void*, smx_host_t) (name, const char*) Func - host_get_name (const char*) (host, void*, smx_host_t) @@ -56,7 +59,10 @@ Func - host_get_state (int) (host, void*, smx_host_t) Func - host_get_current_power_peak (double) (host, void*, smx_host_t) Func - host_get_power_peak_at (double) (host, void*, smx_host_t) (pstate_index, int) Func - host_get_nb_pstates (int) (host, void*, smx_host_t) -Proc - host_set_power_peak_at (void) (host, void*, smx_host_t) (pstate_index, int) +Func - host_get_wattmin_at (double) (host, void*, smx_host_t) (pstate_index, int) +Func - host_get_wattmax_at (double) (host, void*, smx_host_t) (pstate_index, int) +Proc - host_set_pstate (void) (host, void*, smx_host_t) (pstate_index, int) +Func - host_get_pstate (int) (host, void*, smx_host_t) Func - host_get_consumed_energy (double) (host, void*, smx_host_t) Func - host_execute (void*, smx_synchro_t) (name, const char*) (host, void*, smx_host_t) (flops_amount, double) (priority, double) (bound, double) (affinity_mask, unsigned long)