Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2023.
[simgrid.git] / src / kernel / actor / Simcall.cpp
index 9f35a3b..33af408 100644 (file)
@@ -1,40 +1,17 @@
-/* Copyright (c) 2010-2022. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2010-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#include "Simcall.hpp"
+#include "src/kernel/actor/Simcall.hpp"
 #include "simgrid/s4u/Host.hpp"
 #include "src/kernel/actor/ActorImpl.hpp"
 #include "src/kernel/actor/SimcallObserver.hpp"
 #include "src/kernel/context/Context.hpp"
 #include "xbt/log.h"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_simcall, kernel, "transmuting from user request into kernel handlers");
-
 namespace simgrid::kernel::actor {
 
-/** @private
- * @brief (in kernel mode) unpack the simcall and activate the handler
- *
- */
-void ActorImpl::simcall_handle(int times_considered)
-{
-  XBT_DEBUG("Handling simcall %p: %s(%ld) %s", &simcall_, simcall_.issuer_->get_cname(), simcall_.issuer_->get_pid(),
-            (simcall_.observer_ != nullptr ? simcall_.observer_->to_string().c_str() : simcall_.get_cname()));
-  if (simcall_.observer_ != nullptr)
-    simcall_.observer_->prepare(times_considered);
-  if (wannadie())
-    return;
-
-  xbt_assert(simcall_.call_ != Simcall::Type::NONE, "Asked to do the noop syscall on %s@%s", get_cname(),
-             get_host()->get_cname());
-
-  (*simcall_.code_)();
-  if (simcall_.call_ == Simcall::Type::RUN_ANSWERED)
-    simcall_answer();
-}
-
 /** @brief returns a printable string representing a simcall */
 const char* Simcall::get_cname() const
 {
@@ -49,5 +26,13 @@ const char* Simcall::get_cname() const
     return to_c_str(call_);
   }
 }
+ObjectAccessSimcallItem::ObjectAccessSimcallItem()
+{
+  take_ownership();
+}
+void ObjectAccessSimcallItem::take_ownership()
+{
+  simcall_owner_ = ActorImpl::self();
+}
 
 } // namespace simgrid::kernel::actor