Skip to content

Commit d3c4ce3

Browse files
committed
Added missing version notices
1 parent c5520e5 commit d3c4ce3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

include/regions/regions.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ extern "C" {
3434
*
3535
* Contains the beginning and ending pointers as well as the name of the binary
3636
* file to which the memory region belongs to.
37+
*
38+
* @since v2.2
3739
*/
3840
struct region {
3941
/** The beginning of the memory region. */
@@ -49,6 +51,8 @@ struct region {
4951

5052
/**
5153
* Defines an array of multiple region information.
54+
*
55+
* @since v2.2
5256
*/
5357
struct regionInfo {
5458
/** The array of memory region structures. */
@@ -69,6 +73,7 @@ struct regionInfo {
6973
* According to @c callstack_autoClearCaches cache pointers are used.
7074
*
7175
* @return an array with global storage regions
76+
* @since v2.2
7277
*/
7378
struct regionInfo regions_getLoadedRegions(void);
7479

@@ -88,13 +93,15 @@ struct regionInfo regions_getLoadedRegions(void);
8893
* calling thread.
8994
*
9095
* @return an array with thread-local storage memory regions
96+
* @since v2.2
9197
*/
9298
struct regionInfo regions_getTLSRegions(void);
9399

94100
/**
95101
* Destructs the given region information.
96102
*
97103
* @param info the region information to be destructed
104+
* @since v2.2
98105
*/
99106
void regions_destroyInfo(const struct regionInfo* info);
100107

0 commit comments

Comments
 (0)