GM6000 Digital Heater Controller Branch: main
SDX-1330
Aligned.h
Go to the documentation of this file.
1#ifndef Cpl_Memory_Aligned_h_
2#define Cpl_Memory_Aligned_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include <stdlib.h> // for size_t
16
17
18///
19namespace Cpl {
20///
21namespace Memory {
22
23/** This type is used to create a memory-block that is aligned to a size_t
24 boundary. This class statically allocates at least 'sizeInBytes' bytes of
25 memory.
26 */
27template <size_t sizeInBytes>
29{
30 /** This member defines the memory in terms of an array of
31 size_t words.
32 */
33 size_t m_wordMem[( sizeInBytes + ( sizeof( size_t ) - 1 ) ) / sizeof( size_t )];
34
35 /** This member defines the memory in terms of a character array.
36 */
37 char m_byteMem[sizeInBytes];
38};
39
40
41/** This type is used to create a memory block that is large enough to hold
42 the memory footprint of ONE instance of 'class T'. The memory block is
43 aligned to a size_t boundary.
44 */
45template <class T>
47{
48 /** This member defines the memory in terms of an array of
49 size_t words.
50 */
51 size_t m_wordMem[( sizeof( T ) + ( sizeof( size_t ) - 1 ) ) / sizeof( size_t )];
52
53 /** This member defines the memory in terms of a character array.
54 */
55 char m_byteMem[sizeof( T )];
56};
57
58
59}; // end namespaces
60};
61#endif // end header latch
size_t m_wordMem[(sizeof(T)+(sizeof(size_t) - 1))/sizeof(size_t)]
This member defines the memory in terms of an array of size_t words.
Definition Aligned.h:51
char m_byteMem[sizeof(T)]
This member defines the memory in terms of a character array.
Definition Aligned.h:55
size_t m_wordMem[(sizeInBytes+(sizeof(size_t) - 1))/sizeof(size_t)]
This member defines the memory in terms of an array of size_t words.
Definition Aligned.h:33
char m_byteMem[sizeInBytes]
This member defines the memory in terms of a character array.
Definition Aligned.h:37
This type is used to create a memory-block that is aligned to a size_t boundary.
Definition Aligned.h:29
This type is used to create a memory block that is large enough to hold the memory footprint of ONE i...
Definition Aligned.h:47
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20