Date: Wed, 5 Feb 2014 22:28:54 +0100
Subject: [PATCH] vxWorks (vx68 and later): m_data -> m_sdata; m_data is a
macro efined by vxWorks
---
documentation/pvArray.html | 6 ++--
pvDataApp/misc/sharedVector.h | 59 ++++++++++++++++++-----------------
2 files changed, 33 insertions(+), 32 deletions(-)
diff --git a/documentation/pvArray.html b/documentation/pvArray.html
index b5c53c3..f971287 100644
--- a/documentation/pvArray.html
+++ b/documentation/pvArray.html
@@ -1188,7 +1188,7 @@ It is like std::vector but provides two additional features
To support these two features a shared_vector keeps the following
private data:
- - m_data
+ - m_sdata
- This is a std::tr1::shared_ptr for the actual data array.
- m_offset
@@ -1197,9 +1197,9 @@ private data:
- This is the size, i. e. total number of elements, seen by the window.
- m_total
- This is the number of elements between offset and the end of the array referenced
- by m_data.
+ by m_sdata.
-Note that only m_data is shared. Thus each shared_vector has it's own window.