From b62ab63149465b5961535386281d4dd89091a522 Mon Sep 17 00:00:00 2001 From: weiyu Date: Tue, 28 May 2019 16:50:06 -0700 Subject: [PATCH] add NOOP to action type --- action.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.h b/action.h index 8f44c7cb..b0b3d51a 100644 --- a/action.h +++ b/action.h @@ -76,8 +76,9 @@ typedef enum action_type { ATOMIC_NOTIFY_ONE, /**< A notify_one action */ ATOMIC_NOTIFY_ALL, /**< A notify all action */ ATOMIC_WAIT, /**< A wait action */ - ATOMIC_ANNOTATION /**< An annotation action to pass information + ATOMIC_ANNOTATION, /**< An annotation action to pass information to a trace analysis */ + NOOP } action_type_t; /* Forward declaration */ -- 2.34.1