Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
doc: fix more broken links
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Mon, 14 Sep 2020 19:31:26 +0000 (21:31 +0200)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Mon, 14 Sep 2020 19:31:26 +0000 (21:31 +0200)
docs/source/app_s4u.rst
docs/source/conf.py

index 5a5fe01..9e9be4e 100644 (file)
@@ -635,7 +635,7 @@ Querying info
       .. autodoxymethod:: simgrid::s4u::this_actor::is_maestro()
 
       .. autodoxymethod:: simgrid::s4u::this_actor::get_host()
-      .. autodoxymethod:: simgrid::s4u::this_actor::set_host(Host *new_host)
+      .. autodoxymethod:: simgrid::s4u::this_actor::set_host(simgrid::s4u::Host *new_host)
 
    .. group-tab:: Python
 
index d931437..e06332d 100644 (file)
@@ -68,27 +68,47 @@ breathe_default_project = "simgrid"
 # Setup the autodoxy extension
 doxygen_xml = os.path.join(os.path.dirname(__file__), "..", "build", "xml")
 autodoxy_requalified_identifiers =  [ # The first element will be substituted into the second one if it's starting an element or preceded by a space
-    ("ActorPtr", "simgrid::s4u::ActorPtr"),
-    ("Actor", "simgrid::s4u::Actor"),
-    ("CommPtr", "simgrid::s4u::CommPtr"),
-    ("Disk", "simgrid::s4u::Disk"),
-    ("ExecPtr", "simgrid::s4u::ExecPtr"),
-    ("Host", "simgrid::s4u::Host"),
-    ("s4u::Host", "simgrid::s4u::Host"),
-    ("Engine", "simgrid::s4u::Engine"),
-    ("Link", "simgrid::s4u::Link"),
-    ("Mailbox", "simgrid::s4u::Mailbox"),
-    ("Mutex", "simgrid::s4u::Mutex"),
-    ("s4u::Mutex", "simgrid::s4u::Mutex"),
-    ("NetZone", "simgrid::s4u::NetZone"),
-    ("Semaphore", "simgrid::s4u::Semaphore"),
+    ("Activity",       "simgrid::s4u::Activity"),
+    ("Actor",          "simgrid::s4u::Actor"),
+    ("ActorPtr",       "simgrid::s4u::ActorPtr"),
+    ("Barrier",        "simgrid::s4u::Barrier"),
+    ("BarrierPtr",     "simgrid::s4u::BarrierPtr"),
+    ("Comm",           "simgrid::s4u::Comm"),
+    ("CommPtr",        "simgrid::s4u::CommPtr"),
+    ("ConditionVariable",    "simgrid::s4u::ConditionVariable"),
+    ("ConditionVariablePtr", "simgrid::s4u::ConditionVariablePtr"),
+    ("Disk",           "simgrid::s4u::Disk"),
+    ("Exec",           "simgrid::s4u::Exec"),
+    ("ExecPtr",        "simgrid::s4u::ExecPtr"),
+    ("Host",           "simgrid::s4u::Host"),
+    ("s4u::Host",      "simgrid::s4u::Host"),
+    ("Engine",         "simgrid::s4u::Engine"),
+    ("Io",             "simgrid::s4u::Io"),
+    ("Link",           "simgrid::s4u::Link"),
+    ("Mailbox",        "simgrid::s4u::Mailbox"),
+    ("Mutex",          "simgrid::s4u::Mutex"),
+    ("s4u::Mutex",     "simgrid::s4u::Mutex"),
+    ("s4u::MutexPtr",  "simgrid::s4u::MutexPtr"),
+    ("NetZone",        "simgrid::s4u::NetZone"),
+    ("Semaphore",      "simgrid::s4u::Semaphore"),
+    ("VirtualMachine", "simgrid::s4u::VirtualMachine"),
   ]
 
 # Generate a warning for all a cross-reference (such as :func:`myfunc`) that cannot be found
 nitpicky = True
 nitpick_ignore = [
   ('cpp:identifier', 'boost'),
+  ('cpp:identifier', 'boost::intrusive_ptr<Activity>'),
+  ('cpp:identifier', 'boost::intrusive_ptr<Actor>'),
+  ('cpp:identifier', 'boost::intrusive_ptr<Barrier>'),
+  ('cpp:identifier', 'boost::intrusive_ptr<Comm>'),
+  ('cpp:identifier', 'boost::intrusive_ptr<Io>'),  
+  ('cpp:identifier', 'boost::intrusive_ptr<Mutex>'),  
   ('cpp:identifier', 'kernel'),
+  ('cpp:identifier', 'kernel::activity'),
+  ('cpp:identifier', 'kernel::profile'),
+  ('cpp:identifier', 'kernel::resource'),
+  ('cpp:identifier', 'kernel::routing'),
   ('cpp:identifier', 'simgrid'),
   ('cpp:identifier', 'simgrid::s4u'),
   ('cpp:identifier', 'this_actor'),