Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / teshsuite / kernel / context-defaults / context-defaults.cpp
1 /* check_defaults -- simple program displaying its context factory          */
2
3 /* Copyright (c) 2013-2022. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "simgrid/s4u/Engine.hpp"
10 #include "xbt/log.h"
11
12 int main(int argc, char* argv[])
13 {
14   xbt_log_control_set("root.fmt:[%c/%p]%e%m%n");
15   xbt_log_control_set("ker_context.threshold:verbose");
16   XBT_ATTRIB_UNUSED simgrid::s4u::Engine e(&argc, argv);
17   return 0;
18 }