Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix make distcheck and useless cosmetics
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Tue, 12 Nov 2019 14:46:29 +0000 (15:46 +0100)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Tue, 12 Nov 2019 14:49:11 +0000 (15:49 +0100)
This should have been 2 commits, but I don't want to artificially
increase the commit amount even further.

MANIFEST.in
include/simgrid/actor.h
src/s4u/s4u_Actor.cpp
tools/cmake/DefinePackages.cmake

index 320d589..bdcab2b 100644 (file)
@@ -689,8 +689,6 @@ include teshsuite/s4u/activity-lifecycle/activity-lifecycle.tesh
 include teshsuite/s4u/activity-lifecycle/testing_platform.xml
 include teshsuite/s4u/actor-autorestart/actor-autorestart.cpp
 include teshsuite/s4u/actor-autorestart/actor-autorestart.tesh
 include teshsuite/s4u/activity-lifecycle/testing_platform.xml
 include teshsuite/s4u/actor-autorestart/actor-autorestart.cpp
 include teshsuite/s4u/actor-autorestart/actor-autorestart.tesh
-include teshsuite/s4u/actor-migration/actor-migration.cpp
-include teshsuite/s4u/actor-migration/actor-migration.tesh
 include teshsuite/s4u/actor/actor.cpp
 include teshsuite/s4u/actor/actor.tesh
 include teshsuite/s4u/cloud-interrupt-migration/cloud-interrupt-migration.cpp
 include teshsuite/s4u/actor/actor.cpp
 include teshsuite/s4u/actor/actor.tesh
 include teshsuite/s4u/cloud-interrupt-migration/cloud-interrupt-migration.cpp
@@ -1748,6 +1746,7 @@ include doc/doxygen/uhood.doc
 include doc/doxygen/uhood_arch.doc
 include doc/doxygen/uhood_switch.doc
 include docs/Build.sh
 include doc/doxygen/uhood_arch.doc
 include doc/doxygen/uhood_switch.doc
 include docs/Build.sh
+include docs/find-missing.py
 include docs/ignored_symbols
 include docs/manpages/smpicc.1
 include docs/manpages/smpicxx.1
 include docs/ignored_symbols
 include docs/manpages/smpicc.1
 include docs/manpages/smpicxx.1
@@ -1768,6 +1767,9 @@ include docs/source/Start_Your_Own_Project.rst
 include docs/source/Tutorial_Algorithms.rst
 include docs/source/Tutorial_MPI_Applications.rst
 include docs/source/XML_Reference.rst
 include docs/source/Tutorial_Algorithms.rst
 include docs/source/Tutorial_MPI_Applications.rst
 include docs/source/XML_Reference.rst
+include docs/source/_ext/autodoxy.py
+include docs/source/_ext/showfile.css
+include docs/source/_ext/showfile.js
 include docs/source/_ext/showfile.py
 include docs/source/_templates/breadcrumbs.html
 include docs/source/app_msg.rst
 include docs/source/_ext/showfile.py
 include docs/source/_templates/breadcrumbs.html
 include docs/source/app_msg.rst
index b2bc733..90836fa 100644 (file)
@@ -42,7 +42,7 @@ XBT_PUBLIC void sg_actor_daemonize(sg_actor_t actor);
 XBT_ATTRIB_DEPRECATED_v329("Please use sg_actor_set_host() instead") XBT_PUBLIC
     void sg_actor_migrate(sg_actor_t process, sg_host_t host);
 
 XBT_ATTRIB_DEPRECATED_v329("Please use sg_actor_set_host() instead") XBT_PUBLIC
     void sg_actor_migrate(sg_actor_t process, sg_host_t host);
 
-XBT_PUBLIC void sg_actor_set_host(sg_actor_t process, sg_host_t host);
+XBT_PUBLIC void sg_actor_set_host(sg_actor_t actor, sg_host_t host);
 XBT_PUBLIC void sg_actor_join(sg_actor_t actor, double timeout);
 XBT_PUBLIC void sg_actor_kill(sg_actor_t actor);
 XBT_PUBLIC void sg_actor_kill_all();
 XBT_PUBLIC void sg_actor_join(sg_actor_t actor, double timeout);
 XBT_PUBLIC void sg_actor_kill(sg_actor_t actor);
 XBT_PUBLIC void sg_actor_kill_all();
index c188ca3..2d2f2c6 100644 (file)
@@ -619,9 +619,9 @@ void sg_actor_daemonize(sg_actor_t actor)
  *
  * This function changes the value of the #sg_host_t on  which @a actor is running.
  */
  *
  * This function changes the value of the #sg_host_t on  which @a actor is running.
  */
-void sg_actor_set_host(sg_actor_t process, sg_host_t host)
+void sg_actor_set_host(sg_actor_t actor, sg_host_t host)
 {
 {
-  process->set_host(host);
+  actor->set_host(host);
 }
 void sg_actor_migrate(sg_actor_t process, sg_host_t host) // deprecated
 {
 }
 void sg_actor_migrate(sg_actor_t process, sg_host_t host) // deprecated
 {
index 9ee5c69..a5980b5 100644 (file)
@@ -875,6 +875,10 @@ set(DOC_SOURCES
   docs/requirements.txt
   docs/source/conf.py
   docs/source/Doxyfile
   docs/requirements.txt
   docs/source/conf.py
   docs/source/Doxyfile
+  docs/find-missing.py
+  docs/source/_ext/autodoxy.py
+  docs/source/_ext/showfile.css
+  docs/source/_ext/showfile.js
   docs/source/_ext/showfile.py
   docs/source/_templates/breadcrumbs.html
 
   docs/source/_ext/showfile.py
   docs/source/_templates/breadcrumbs.html