Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
47a06500e67e0e116f728fdb81a7738d4a3e77c7
[simgrid.git] / src / xbt / xbt_virtu.c
1 /* virtu - virtualization layer for XBT to choose between GRAS and MSG implementation */
2
3 /* Copyright (c) 2007 Martin Quinson. 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
12 static int xbt_fake_pid(void)
13 {
14   return 0;
15 }
16
17 int_f_void_t xbt_getpid = xbt_fake_pid;