.. index:: single: FAQ; burst events How to create burst events in OmpSs programs ============================================ .. highlight:: c Burst events are such with begin/end boundaries. They are useful to measure when we are starting to execute a code and when we are finalizing. Lets imagine we have the following code:: #include #define ITERS 10 #pragma omp task void f( int n ) { usleep(100); fprintf(stderr,"[%3d]",n); usleep(200); } int main (int argc, char *argv[] ) { for (int i=0; i