From: Arnaud Giersch Date: Thu, 10 Nov 2011 14:47:20 +0000 (+0100) Subject: Remove declaration for inexistent functions. X-Git-Tag: exp_20120216~357 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/7711e3434875abc7fba905333f93ef83e5e77a59?hp=3cafa64810d94a10c3fc94ee9d2fac15494ce901 Remove declaration for inexistent functions. --- diff --git a/src/simix/smx_context_thread.c b/src/simix/smx_context_thread.c index e3fbcf0f4b..c20fc0a2dc 100644 --- a/src/simix/smx_context_thread.c +++ b/src/simix/smx_context_thread.c @@ -34,7 +34,6 @@ smx_ctx_thread_factory_create_context(xbt_main_func_t code, int argc, static void smx_ctx_thread_free(smx_context_t context); static void smx_ctx_thread_stop(smx_context_t context); static void smx_ctx_thread_suspend(smx_context_t context); -static void smx_ctx_thread_resume(smx_context_t new_context); static void smx_ctx_thread_runall_serial(void); static void smx_ctx_thread_runall_parallel(void); static smx_context_t smx_ctx_thread_self(void); diff --git a/src/surf/lagrange.c b/src/surf/lagrange.c index 9fc36c9e1e..c04dcdeea5 100644 --- a/src/surf/lagrange.c +++ b/src/surf/lagrange.c @@ -37,8 +37,6 @@ void lagrange_solve(lmm_system_t sys); //computes the value of the dichotomy using a initial values, init, with a specific variable or constraint static double dichotomy(double init, double diff(double, void *), void *var_cnst, double min_error); -//computes the value of the differential of variable param_var applied to mu -static double partial_diff_mu(double mu, void *param_var); //computes the value of the differential of constraint param_cnst applied to lambda static double partial_diff_lambda(double lambda, void *param_cnst); diff --git a/src/surf/network_im.c b/src/surf/network_im.c index 4bdee9f3cd..d3816379e2 100644 --- a/src/surf/network_im.c +++ b/src/surf/network_im.c @@ -90,7 +90,6 @@ static int im_net_get_link_latency_limited(surf_action_t action); static int im_net_action_is_suspended(surf_action_t action); static double im_net_action_get_remains(surf_action_t action); static void im_net_action_set_max_duration(surf_action_t action, double duration); -static void surf_network_model_init_CM02_im(const char *filename); static void im_net_update_actions_state(double now, double delta); static void update_action_remaining(double now); diff --git a/src/surf/surfxml_parse.c b/src/surf/surfxml_parse.c index 0723683a35..46faca1914 100644 --- a/src/surf/surfxml_parse.c +++ b/src/surf/surfxml_parse.c @@ -86,10 +86,6 @@ static XBT_INLINE void surfxml_call_cb_functions(xbt_dynar_t); YY_BUFFER_STATE surf_input_buffer; FILE *surf_file_to_parse = NULL; -static void parse_Stag_trace(void); -static void parse_Etag_trace(void); -static void parse_Stag_trace_connect(void); - static void init_randomness(void); static void add_randomness(void);