Skip to content

Commit

Permalink
Disable all callbacks by default
Browse files Browse the repository at this point in the history
Allow user to decide what callbacks should be enabled.
  • Loading branch information
Igor Wodiany committed May 8, 2020
1 parent 6158682 commit 22b1f9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/afterompt.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
#include "afterompt.h"

// TODO: Move defines to a separate config file.
#define TRACE_LOOPS 1
#define TRACE_LOOPS 0

#define TRACE_TASKS 1
#define TRACE_TASKS 0

#define TRACE_OTHERS 0

#define ALLOW_EXPERIMENTAL 1
#define ALLOW_EXPERIMENTAL 0

/* Time reference */
static struct am_timestamp_reference am_ompt_tsref;
Expand Down

0 comments on commit 22b1f9d

Please sign in to comment.