Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'wifi_rate_zero' into 'master'
[simgrid.git] / src / simix / smx_context.cpp
1 /* a fast and simple context switching library                              */
2
3 /* Copyright (c) 2009-2022. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "src/kernel/context/Context.hpp"
9
10 int SIMIX_context_is_parallel() // XBT_ATTRIB_DEPRECATED_v333
11 {
12   return simgrid::kernel::context::is_parallel();
13 }
14
15 int SIMIX_context_get_nthreads() // XBT_ATTRIB_DEPRECATED_v333
16 {
17   return simgrid::kernel::context::get_nthreads();
18 }
19
20 void SIMIX_context_set_nthreads(int nb_threads) // XBT_ATTRIB_DEPRECATED_v333
21 {
22   simgrid::kernel::context::set_nthreads(nb_threads);
23 }
24
25 e_xbt_parmap_mode_t SIMIX_context_get_parallel_mode() // XBT_ATTRIB_DEPRECATED_v333
26 {
27   return simgrid::kernel::context::get_parallel_mode();
28 }
29
30 void SIMIX_context_set_parallel_mode(e_xbt_parmap_mode_t mode) // XBT_ATTRIB_DEPRECATED_v333
31 {
32   simgrid::kernel::context::set_parallel_mode(mode);
33 }