header modif
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 29 May 2003 15:12:39 +0000 (15:12 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 29 May 2003 15:12:39 +0000 (15:12 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@29 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/lttv/attribute.c
ltt/branches/poly/lttv/hook.c
ltt/branches/poly/lttv/lttv.h
ltt/branches/poly/lttv/main.c
ltt/branches/poly/lttv/module.c

index b400804ceef835a4a00ef6ee38864ce61da8b1ab..973bdc9e98e4ae59afcefd8b44c549ae0a19bce6 100644 (file)
@@ -1,4 +1,4 @@
-#include <lttv/attribute.h>
+#include "attribute.h"
 
 inline lttv_string_id lttv_string_id_from_string(const char *s) {
   return g_quark_from_string(s);
index 18ed98efb2dc0b3e91e33bb91d844167ea1fee12..6fcca66a6c3bdb42af0aa6b80aa66336a70f7f98 100644 (file)
@@ -1,4 +1,4 @@
-#include <lttv/hook.h>
+#include "hook.h"
 
 
 typedef struct _lttv_hook_closure {
index 27a94d0d6a7b2996f35190698ba09b6c25fc7830..265838503297552f1c45d0dd95ae863b9c86a555 100644 (file)
@@ -1,15 +1,11 @@
 #ifndef LTTV_H
 #define LTTV_H
 
-
-#include <lttv/attribute.h>
-#include <lttv/hook.h>
-#include <lttv/option.h>
-#include <lttv/module.h>
 /* Initial draft by Michel Dagenais May 2003
  * Reworked by Mathieu Desnoyers, May 2003
  */
 
+
 /* The modules in the visualizer communicate with the main module and
    with each other through attributes. There is a global set of attributes as
    well as attributes attached to each trace set, trace and tracefile. */
@@ -17,6 +13,7 @@
 lttv_attributes *lttv_global_attributes();
 
 
+
 /* Modules are allowed to define new command line options.
 
    Each option has a long name (--long_name), a short one character 
index fdb44c70e3e4f15e7ad0fd1a436460995bcc6020..b484bbc1e58b5bcef54bcd8e207af3c9b8046181 100644 (file)
@@ -1,6 +1,6 @@
 
-#include <lttv/lttv.h>
-#include <lttv/trace.h>
+#include "lttv.h"
+#include "trace.h"
 
 
 /* The main program maintains a few central data structures and relies
@@ -11,7 +11,7 @@
    they are loaded and initialized. */
 
 
-lttv_attributes *attributes_global;
+static lttv_attributes *attributes_global;
 
 static lttv_hooks
   *hooks_init_after,
index ae719504c83730f42e152e027ddc3d2e260f05eb..a2ecffe23acee1c6089e3783775730557ff8a430 100644 (file)
@@ -8,7 +8,7 @@
  */
 
 #include <lttv/lttv.h>
-#include <lttv/module.h>
+#include "module.h"
 #include <popt.h>
 
 /* Table of loaded modules and paths where to search for modules */
This page took 0.02596 seconds and 4 git commands to generate.