X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d54bd673caabfaf797eef66bea11c265759a8652..eff2324504a9161166f095f4fe512a122da6854e:/src/instr/private.h?ds=sidebyside diff --git a/src/instr/private.h b/src/instr/private.h index b4ebdcf2aa..89b16ee2fe 100644 --- a/src/instr/private.h +++ b/src/instr/private.h @@ -1,31 +1,25 @@ -/* - * private.h - * - * Created on: Nov 23, 2009 - * Author: Lucas Schnorr - * License: 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. - * - * Copyright (c) 2009 The SimGrid team. - */ +/* Copyright (c) 2010. The SimGrid Team. + * All rights reserved. */ + +/* 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. */ #ifndef INSTR_PRIVATE_H_ #define INSTR_PRIVATE_H_ -#include "instr/tracing_config.h" +#include "simgrid_config.h" #ifdef HAVE_TRACING extern int tracing_active; /* declared in paje.c */ -extern int trace_mask; /* declared in interface.c */ #define IS_TRACING (tracing_active) #define IS_TRACED(n) (n->category) -#define IS_TRACING_TASKS ((TRACE_TASK)&trace_mask) -#define IS_TRACING_PLATFORM ((TRACE_PLATFORM)&trace_mask) -#define IS_TRACING_PROCESSES ((TRACE_PROCESS)&trace_mask) -#define IS_TRACING_VOLUME ((TRACE_VOLUME)&trace_mask) +#define IS_TRACING_TASKS (_TRACE_msg_task_enabled()) +#define IS_TRACING_PLATFORM (_TRACE_platform_enabled()) +#define IS_TRACING_PROCESSES (_TRACE_msg_process_enabled()) +#define IS_TRACING_VOLUME (_TRACE_msg_volume_enabled()) +#define IS_TRACING_SMPI (_TRACE_smpi_enabled()) #include "instr/instr.h" #include "msg/msg.h" @@ -60,6 +54,7 @@ void pajeDefineVariableType(const char *alias, const char *containerType, const void pajeSetVariable (double time, const char *entityType, const char *container, const char *value); void pajeAddVariable (double time, const char *entityType, const char *container, const char *value); void pajeSubVariable (double time, const char *entityType, const char *container, const char *value); +void pajeNewEvent (double time, const char *entityType, const char *container, const char *value); /* from general.c */ char *TRACE_paje_msg_container (m_task_t task, char *host, char *output, int len); @@ -134,6 +129,16 @@ int TRACE_surf_gtnets_get_src (void *action); int TRACE_surf_gtnets_get_dst (void *action); void TRACE_surf_gtnets_destroy (void *action); +/* from instr_config.c */ +int _TRACE_smpi_enabled (void); +int _TRACE_platform_enabled (void); +int _TRACE_msg_task_enabled (void); +int _TRACE_msg_process_enabled (void); +int _TRACE_msg_volume_enabled (void); +char *_TRACE_filename (void); +void TRACE_global_init(int *argc, char **argv); + + #endif #endif /* PRIVATE_H_ */