Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ok, I stop trying to please sonar.
[simgrid.git] / src / xbt / xbt_virtu.c
1 /* virtualization layer for XBT */
2
3 /* Copyright (c) 2007-2014. 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 "xbt/misc.h"
9 #include "xbt/virtu.h"
10 #include "xbt/function_types.h"
11 #include "simgrid/simix.h"
12
13 static int xbt_fake_pid(void)
14 {
15   return 0;
16 }
17
18 int_f_void_t xbt_getpid = &xbt_fake_pid;
19
20 const char *xbt_procname(void)
21 {
22   return SIMIX_process_self_get_name();
23 }