Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Introduce log appenders
[simgrid.git] / src / xbt / xbt_virtu.c
1 /* $Id$ */
2
3 /* virtu - virtualization layer for XBT to choose between GRAS and MSG implementation */
4
5 /* Copyright (c) 2007 Martin Quinson. All rights reserved.                  */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "xbt/misc.h"
11 #include "xbt/virtu.h"
12 #include "xbt/function_types.h"
13
14 static int xbt_fake_pid(void) {
15   return 0;
16 }
17
18 int_f_void_t xbt_getpid=xbt_fake_pid;
19