Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
the comment said this function is private, make it private
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Tue, 12 Jan 2016 10:29:48 +0000 (11:29 +0100)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Thu, 14 Jan 2016 11:10:05 +0000 (12:10 +0100)
src/simdag/simdag_private.h

index 193e278..8b62ba2 100644 (file)
@@ -110,7 +110,9 @@ typedef struct SD_dependency {
 } s_SD_dependency_t, *SD_dependency_t;
 
 /* SimDag private functions */
-XBT_PUBLIC(xbt_swag_t) SD_simulate_swag(double how_long); /* could be public, but you need to see the internals of the SD_task_t to use it */
+
+/* could be public, but you need to see the SD_task_t internals to use it */
+XBT_PRIVATE xbt_swag_t SD_simulate_swag(double how_long);
 
 
 XBT_PRIVATE SD_workstation_t __SD_workstation_create(const char* name);