diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2014-11-10 15:28:33 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2014-11-10 15:28:33 +0000 |
commit | 4d44ecd7856680d108d0a5f5da7884423bd84c4a (patch) | |
tree | e0b08d04882afc0f770f5c581df86b98a4e83d68 /ACE/ace/CDR_Stream.h | |
parent | a4436e2d8e5447667c5ddca44523a1c09920c1c4 (diff) | |
download | ATCD-4d44ecd7856680d108d0a5f5da7884423bd84c4a.tar.gz |
Mon Nov 10 15:26:39 UTC 2014 Johnny Willemsen <willemsen_j@remedy.nl>
* ace/CDR_Stream.h:
Doxygen fixes
Diffstat (limited to 'ACE/ace/CDR_Stream.h')
-rw-r--r-- | ACE/ace/CDR_Stream.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/ACE/ace/CDR_Stream.h b/ACE/ace/CDR_Stream.h index b114ef38e09..e9088a10bbf 100644 --- a/ACE/ace/CDR_Stream.h +++ b/ACE/ace/CDR_Stream.h @@ -488,7 +488,7 @@ public: /// gateway. void reset_byte_order (int byte_order); - /// set GIOP version info + /// Set GIOP version info void set_version (ACE_CDR::Octet major, ACE_CDR::Octet minor); /// Set the underlying GIOP version.. @@ -518,13 +518,13 @@ private: /** * write an array of @a length elements, each of @a size bytes and the - * start aligned at a multiple of <align>. The elements are assumed + * start aligned at a multiple of @a align. The elements are assumed * to be packed with the right alignment restrictions. It is mostly * designed for buffers of the basic types. * - * This operation uses <memcpy>; as explained above it is expected - * that using assignment is faster that <memcpy> for one element, - * but for several elements <memcpy> should be more efficient, it + * This operation uses @c memcpy; as explained above it is expected + * that using assignment is faster that @c memcpy for one element, + * but for several elements @c memcpy should be more efficient, it * could be interesting to find the break even point and optimize * for that case, but that would be too platform dependent. */ @@ -541,7 +541,7 @@ private: /** * Grow the CDR stream. When it returns @a buf contains a pointer to * memory in the CDR stream, with at least @a size bytes ahead of it - * and aligned to an <align> boundary. It moved the <wr_ptr> to <buf + * and aligned to an @a align boundary. It moved the <wr_ptr> to <buf * + size>. */ int grow_and_adjust (size_t size, @@ -1050,13 +1050,13 @@ private: /** * Read an array of @a length elements, each of @a size bytes and the - * start aligned at a multiple of <align>. The elements are assumed + * start aligned at a multiple of @a align. The elements are assumed * to be packed with the right alignment restrictions. It is mostly * designed for buffers of the basic types. * - * This operation uses <memcpy>; as explained above it is expected - * that using assignment is faster that <memcpy> for one element, - * but for several elements <memcpy> should be more efficient, it + * This operation uses @c memcpy; as explained above it is expected + * that using assignment is faster that @c memcpy for one element, + * but for several elements @c memcpy should be more efficient, it * could be interesting to find the break even point and optimize * for that case, but that would be too platform dependent. */ @@ -1146,7 +1146,7 @@ protected: const ACE_CDR::Octet *x); /// Efficiently read @a length elements of size @a size each from - /// <input> into <x>; the data must be aligned to <align>. + /// @a input into @a x; the data must be aligned to @a align. ACE_CDR::Boolean read_array (ACE_InputCDR& input, void* x, size_t size, @@ -1169,7 +1169,7 @@ protected: * Exposes the stream implementation of <adjust>, this is useful in * many cases to minimize memory allocations during marshaling. * On success @a buf will contain a contiguous area in the CDR stream - * that can hold @a size bytes aligned to <align>. + * that can hold @a size bytes aligned to @a align. * Results */ int adjust (ACE_OutputCDR& out, |