Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Factorize some code in SURF
[simgrid.git] / src / surf / surf_private.h
index 139403c60732d08015af6086acdda7e572673c2d..af323a9eb7a9a24af23279ce7cff522f0a3b5885 100644 (file)
@@ -16,7 +16,7 @@
 #include "surf/random_mgr.h"
 
 #define NO_MAX_DURATION -1.0
-double sg_tcp_gamma;
+extern double sg_tcp_gamma;
 
 extern const char *surf_action_state_names[6];
 
@@ -32,7 +32,7 @@ typedef enum {
 
 typedef struct surf_model_private {
   int (*resource_used) (void *resource_id);
-  /* Share the resources to the actions and return in hom much time
+  /* Share the resources to the actions and return in how much time
      the next action may terminate */
   double (*share_resources) (double now);
   /* Update the actions' state */
@@ -53,7 +53,7 @@ double generic_maxmin_share_resources(xbt_swag_t running_actions,
                                       lmm_system_t sys,
                                       void (*solve) (lmm_system_t));
 
-/* Generic functions common to all modelss */
+/* Generic functions common to all models */
 e_surf_action_state_t surf_action_get_state(surf_action_t action);
 double surf_action_get_start_time(surf_action_t action);
 double surf_action_get_finish_time(surf_action_t action);