From: alegrand Date: Tue, 2 Nov 2004 18:29:40 +0000 (+0000) Subject: renamed xbt_(*.[ch]) to \1. X-Git-Tag: v3.3~4877 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ed2b5490d6323626eff2efb0021d1deba7e2fd60?ds=sidebyside renamed xbt_(*.[ch]) to \1. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@473 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/Makefile.am b/include/Makefile.am index 272953e6ca..5f7f05fa4e 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -5,6 +5,8 @@ nobase_include_HEADERS = \ xbt/log.h xbt/error.h \ xbt/module.h \ xbt/dynar.h xbt/dict.h xbt/set.h \ + xbt/heap.h \ + xbt/fifo.h \ xbt/config.h \ \ gras/datadesc.h gras/transport.h \ diff --git a/src/Makefile.am b/src/Makefile.am index f5b596b708..319f38000b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -18,6 +18,8 @@ INCLUDES= -I$(top_srcdir)/include \ EXTRA_DIST= \ \ xbt/dict_private.h \ + xbt/heap_private.h \ + xbt/fifo_private.h \ \ gras/Transport/transport_interface.h \ gras/Virtu/virtu_interface.h \ @@ -80,6 +82,8 @@ COMMON_S=\ xbt/log.c xbt/log_default_appender.c xbt/error.c \ xbt/dynar.c \ xbt/dict.c xbt/dict_elm.c xbt/dict_cursor.c \ + xbt/heap.c \ + xbt/fifo.c \ xbt/set.c \ xbt/module.c \ xbt/config.c \ diff --git a/src/xbt/fifo.c b/src/xbt/fifo.c index fc0bb912fc..25413c9300 100644 --- a/src/xbt/fifo.c +++ b/src/xbt/fifo.c @@ -4,7 +4,7 @@ under the terms of the license (GNU LGPL) which comes with this package. */ #include -#include "xbt_fifo_private.h" +#include "fifo_private.h" /* * xbt_fifo_new() diff --git a/src/xbt/fifo_private.h b/src/xbt/fifo_private.h index 26f5cc01be..ba3adb6566 100644 --- a/src/xbt/fifo_private.h +++ b/src/xbt/fifo_private.h @@ -5,7 +5,7 @@ #ifndef _XBT_FIFO_PRIVATE_H #define _XBT_FIFO_PRIVATE_H -#include "xbt_fifo.h" +#include "xbt/fifo.h" /* Bucket structure */ typedef struct xbt_fifo_item { diff --git a/src/xbt/heap.c b/src/xbt/heap.c index 95513b759d..f5549a46f0 100644 --- a/src/xbt/heap.c +++ b/src/xbt/heap.c @@ -5,7 +5,7 @@ /* This program is free software; you can redistribute it and/or modify it under the terms of the license (GNU LGPL) which comes with this package. */ -#include "xbt_heap_private.h" +#include "heap_private.h" /** * xbt_heap_new: diff --git a/src/xbt/heap_private.h b/src/xbt/heap_private.h index 6726edbd32..82c060a3d5 100644 --- a/src/xbt/heap_private.h +++ b/src/xbt/heap_private.h @@ -7,7 +7,7 @@ #define _XBT_HEAP_PRIVATE_H #include -#include "xbt_heap.h" +#include "xbt/heap.h" typedef struct xbt_heapItem { void *content;