From fc57069afade38b4d4392890e488a444e87447a8 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Tue, 31 Jul 2012 19:45:49 -0700 Subject: [PATCH] action: fix ATOMIC_RMW comments --- action.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.h b/action.h index 8d06aa4..da22882 100644 --- a/action.h +++ b/action.h @@ -34,9 +34,9 @@ typedef enum action_type { THREAD_JOIN, /**< A thread join action */ ATOMIC_READ, /**< An atomic read action */ ATOMIC_WRITE, /**< An atomic write action */ - ATOMIC_RMWR, /**< The read of an atomic read-modify-write action */ - ATOMIC_RMW, /**< The write of an atomic read-modify-write action */ - ATOMIC_RMWC, /**< Terminate an atomic read-modify-write action w/o write */ + ATOMIC_RMWR, /**< The read part of an atomic RMW action */ + ATOMIC_RMW, /**< The write part of an atomic RMW action */ + ATOMIC_RMWC, /**< Convert an atomic RMW action into a READ */ ATOMIC_INIT /**< Initialization of an atomic object (e.g., * atomic_init()) */ } action_type_t; -- 2.34.1