Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
CommWaitTransition mailbox is now valid
[simgrid.git] / src / kernel / context / ContextUnix.hpp
index c8a9ad2b71473f3a3675d2f7527b789b5d920471..48f13251ab7dbc2e4c9af78b19e5255d8ad159cc 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2009-2022. 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. */
@@ -28,7 +28,7 @@ public:
   UContext(std::function<void()>&& code, actor::ActorImpl* actor, SwappedContextFactory* factory);
 
 private:
-  ucontext_t uc_;         /* the ucontext that executes the code */
+  ucontext_t uc_{}; /* the ucontext that executes the code */
 
   void swap_into_for_real(SwappedContext* to) override;
 };