Bugs:
=====
* ./configure --prefix=/usr && make -j1 && make DESTDIR=/quelque/part/ install

Features
========
* add support for MPI-IO
* Add OpenCL support ?
* event filtering: allow for filtering events. For instance:
   * don't record event foo if its depth is > n
   * don't record event foo if it's called more than x times
   * don't record any event whose depth is > n
* improve module generator: include statistics
* improve statistics: compute the duration of functions
* add a program that list the functions that are
   intercepted/ permits to select the functions to intercept

eztrace_create_plugin:
=====================
* Need to add the "#include <stdarg.h>" automatically when a function
   take a variable number of parameters 
   (ie. void func(...) )
* add support for functions that a pointer to a function as a
   parameter (ie. void func( void (*func_name)(int*) ) )


OpenMP
======
* During a parallel section, we should modify the state of each thread
by adding the "team id" (~ parallel section identifier)
* Fix the memory leak in parallel_start()

MPI
===
* when using configuring eztrace to use OpenMPI, calling "eztrace
prog" may raise an 'undefined symbol' error if the program does not
use OpenMPI. This is because some symbols are defined in OpenMPI's
libmpi.so. When eztrace's libmpi.so is loaded, these symbols are
needed.

Misc.
====
* update the documentation. The creation of user-defined plugins
   should be well documented (at least on the web page) !
