summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock/include/rtems/bdbuf.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-02-28 15:59:04 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-03-13 12:24:18 +0100
commitc42b03f49834b38a4bdcaf84a04638474c0d4216 (patch)
tree472496c89541621d3931b55f9282af3f1c58278f /cpukit/libblock/include/rtems/bdbuf.h
parentlibblock: Discard extended partitions (diff)
downloadrtems-c42b03f49834b38a4bdcaf84a04638474c0d4216.tar.bz2
libblock: Remove superfluous volatile qualifier
All these variables are protected by the bdbuf cache mutex.
Diffstat (limited to 'cpukit/libblock/include/rtems/bdbuf.h')
-rw-r--r--cpukit/libblock/include/rtems/bdbuf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libblock/include/rtems/bdbuf.h b/cpukit/libblock/include/rtems/bdbuf.h
index 33db50adce..11b413223b 100644
--- a/cpukit/libblock/include/rtems/bdbuf.h
+++ b/cpukit/libblock/include/rtems/bdbuf.h
@@ -321,13 +321,13 @@ typedef struct rtems_bdbuf_buffer
unsigned char* buffer; /**< Pointer to the buffer memory area */
- volatile rtems_bdbuf_buf_state state; /**< State of the buffer. */
+ rtems_bdbuf_buf_state state; /**< State of the buffer. */
- volatile uint32_t waiters; /**< The number of threads waiting on this
+ uint32_t waiters; /**< The number of threads waiting on this
* buffer. */
rtems_bdbuf_group* group; /**< Pointer to the group of BDs this BD is
* part of. */
- volatile uint32_t hold_timer; /**< Timer to indicate how long a buffer
+ uint32_t hold_timer; /**< Timer to indicate how long a buffer
* has been held in the cache modified. */
int references; /**< Allow reference counting by owner. */