Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Last version before merging with master
[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, 2008, 2009, 2010. 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 "xbt/misc.h"
10 #include "xbt/virtu.h"
11 #include "xbt/function_types.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;