Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Typo.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Fri, 4 Nov 2022 17:47:40 +0000 (18:47 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 7 Nov 2022 21:32:04 +0000 (22:32 +0100)
include/simgrid/simix.hpp

index 87b82b9..9e3ec63 100644 (file)
@@ -85,7 +85,7 @@ template <class F> typename std::result_of_t<F()> simcall_object_access(ObjectAc
 
 /** Execute some code (that does not return immediately) in kernel context
  *
- * This is very similar to simcall() right above, but the calling actor will not get rescheduled until
+ * This is very similar to simcall_answered() above, but the calling actor will not get rescheduled until
  * actor->simcall_answer() is called explicitly.
  *
  * This is meant for blocking actions. For example, locking a mutex is a blocking simcall.