Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
renamed xbt_(*.[ch]) to \1.
authoralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 2 Nov 2004 18:29:40 +0000 (18:29 +0000)
committeralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 2 Nov 2004 18:29:40 +0000 (18:29 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@473 48e7efb5-ca39-0410-a469-dd3cf9ba447f

include/Makefile.am
src/Makefile.am
src/xbt/fifo.c
src/xbt/fifo_private.h
src/xbt/heap.c
src/xbt/heap_private.h

index 272953e..5f7f05f 100644 (file)
@@ -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 \
index f5b596b..319f380 100644 (file)
@@ -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                                                                 \
index fc0bb91..25413c9 100644 (file)
@@ -4,7 +4,7 @@
    under the terms of the license (GNU LGPL) which comes with this package. */
 
 #include <stdlib.h>
-#include "xbt_fifo_private.h"
+#include "fifo_private.h"
 
 /*
  * xbt_fifo_new()
index 26f5cc0..ba3adb6 100644 (file)
@@ -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 {
index 95513b7..f5549a4 100644 (file)
@@ -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:
index 6726edb..82c060a 100644 (file)
@@ -7,7 +7,7 @@
 #define _XBT_HEAP_PRIVATE_H
 
 #include <stdlib.h>
-#include "xbt_heap.h"
+#include "xbt/heap.h"
 
 typedef struct xbt_heapItem {
   void *content;