summaryrefslogtreecommitdiff
path: root/src/core/processors.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/processors.h')
-rw-r--r--src/core/processors.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/core/processors.h b/src/core/processors.h
index 2f12ae1..83f7466 100644
--- a/src/core/processors.h
+++ b/src/core/processors.h
@@ -36,21 +36,12 @@
/* Mise en place de mécanismes internes */
typedef bool (* init_arch_fc) (void);
-/* Affichage de statistiques */
-#ifdef DEBUG_DUMP_STATS
-typedef void (* dump_arch_stats_fc) (void);
-#endif
-
/* Suppression de mécanismes internes */
typedef void (* exit_arch_fc) (void);
/* Enregistre un processeur pour une architecture donnée. */
-#ifdef DEBUG_DUMP_STATS
-bool register_processor_type(const char *, const char *, GType, init_arch_fc, dump_arch_stats_fc, exit_arch_fc);
-#else
bool register_processor_type(const char *, const char *, GType, init_arch_fc, exit_arch_fc);
-#endif
/* Charge les définitions de processeurs "natifs". */
bool load_hard_coded_processors_definitions(void);
@@ -64,10 +55,6 @@ const char *get_arch_processor_name(const char *);
/* Fournit le processeur d'architecture correspondant à un type. */
GArchProcessor *get_arch_processor_for_type(const char *);
-/* Imprime des statistiques quant aux partages. */
-#ifdef DEBUG_DUMP_STATS
-void display_share_stats(GArchProcessor *);
-#endif
#endif /* _ANALYSIS_DB_COLLECTION_H */