X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/38f8eda853bd8930373306f859bd361f39190784..HEAD:/src/simix/smx_context.cpp diff --git a/src/simix/smx_context.cpp b/src/simix/smx_context.cpp deleted file mode 100644 index 725ce4ae75..0000000000 --- a/src/simix/smx_context.cpp +++ /dev/null @@ -1,33 +0,0 @@ -/* a fast and simple context switching library */ - -/* Copyright (c) 2009-2021. 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 "src/kernel/context/Context.hpp" - -int SIMIX_context_is_parallel() // XBT_ATTRIB_DEPRECATED_v333 -{ - return simgrid::kernel::context::is_parallel(); -} - -int SIMIX_context_get_nthreads() // XBT_ATTRIB_DEPRECATED_v333 -{ - return simgrid::kernel::context::get_nthreads(); -} - -void SIMIX_context_set_nthreads(int nb_threads) // XBT_ATTRIB_DEPRECATED_v333 -{ - simgrid::kernel::context::set_nthreads(nb_threads); -} - -e_xbt_parmap_mode_t SIMIX_context_get_parallel_mode() // XBT_ATTRIB_DEPRECATED_v333 -{ - return simgrid::kernel::context::get_parallel_mode(); -} - -void SIMIX_context_set_parallel_mode(e_xbt_parmap_mode_t mode) // XBT_ATTRIB_DEPRECATED_v333 -{ - simgrid::kernel::context::set_parallel_mode(mode); -}