Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
some captured params for llambda were unused, triggering new warning in clang 5
authordegomme <augustin.degomme@unibas.ch>
Fri, 10 Feb 2017 10:03:12 +0000 (11:03 +0100)
committerdegomme <augustin.degomme@unibas.ch>
Fri, 10 Feb 2017 10:03:12 +0000 (11:03 +0100)
include/simgrid/simix/blocking_simcall.hpp
src/msg/msg_vm.cpp

index 3a41904..6341521 100644 (file)
@@ -94,7 +94,7 @@ public:
     simcall_run_blocking([this, &result, self]{
       try {
         // When the kernel future is ready...
-        this->future_.then_([this, &result, self](simgrid::kernel::Future<T> value) {
+        this->future_.then_([&result, self](simgrid::kernel::Future<T> value) {
           // ... wake up the process with the result of the kernel future.
           simgrid::xbt::setPromise(result, value);
           simgrid::simix::unblock(self);
index 64e13a6..6d1d5c3 100644 (file)
@@ -290,11 +290,10 @@ static int migration_rx_fun(int argc, char *argv[])
   // This is clearly ugly but I (Adrien) need more time to do something cleaner (actually we should copy the whole ms
   // structure at the beginning and free it at the end of each function)
   simgrid::s4u::VirtualMachine* vm = static_cast<simgrid::s4u::VirtualMachine*>(ms->vm);
-  msg_host_t src_pm                = ms->src_pm;
   msg_host_t dst_pm                = ms->dst_pm;
 
   // Make sure that we cannot get interrupted between the migrate and the resume to not end in an inconsistent state
-  simgrid::simix::kernelImmediate([vm, src_pm, dst_pm]() {
+  simgrid::simix::kernelImmediate([vm, dst_pm]() {
     /* Update the vm location */
     /* precopy migration makes the VM temporally paused */
     xbt_assert(vm->pimpl_vm_->getState() == SURF_VM_STATE_SUSPENDED);