diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/nil/configuration.xml | 5 | ||||
-rw-r--r-- | test/nil/source/test/test_sequence_006.c | 3 | ||||
-rw-r--r-- | test/rt/configuration.xml | 5 | ||||
-rw-r--r-- | test/rt/source/test/test_sequence_010.c | 3 |
4 files changed, 10 insertions, 6 deletions
diff --git a/test/nil/configuration.xml b/test/nil/configuration.xml index 42c265864..297cb804a 100644 --- a/test/nil/configuration.xml +++ b/test/nil/configuration.xml @@ -1158,10 +1158,11 @@ static MEMORYPOOL_DECL(mp1, sizeof (uint32_t), NULL); static GUARDEDMEMORYPOOL_DECL(gmp1, sizeof (uint32_t)); #endif
-static void *null_provider(size_t size, unsigned align) { +static void *null_provider(size_t size, unsigned align, size_t offset) { (void)size; - (void)align; + (void)align;
+ (void)offset; return NULL; }]]></value>
diff --git a/test/nil/source/test/test_sequence_006.c b/test/nil/source/test/test_sequence_006.c index 759ceae52..b14c522a7 100644 --- a/test/nil/source/test/test_sequence_006.c +++ b/test/nil/source/test/test_sequence_006.c @@ -58,10 +58,11 @@ static MEMORYPOOL_DECL(mp1, sizeof (uint32_t), NULL); static GUARDEDMEMORYPOOL_DECL(gmp1, sizeof (uint32_t));
#endif
-static void *null_provider(size_t size, unsigned align) {
+static void *null_provider(size_t size, unsigned align, size_t offset) {
(void)size;
(void)align;
+ (void)offset;
return NULL;
}
diff --git a/test/rt/configuration.xml b/test/rt/configuration.xml index 420a96d93..3c697723e 100644 --- a/test/rt/configuration.xml +++ b/test/rt/configuration.xml @@ -3547,10 +3547,11 @@ static MEMORYPOOL_DECL(mp1, sizeof (uint32_t), NULL); static GUARDEDMEMORYPOOL_DECL(gmp1, sizeof (uint32_t)); #endif -static void *null_provider(size_t size, unsigned align) { +static void *null_provider(size_t size, unsigned align, size_t offset) { (void)size; - (void)align; + (void)align;
+ (void)offset; return NULL; }]]></value>
diff --git a/test/rt/source/test/test_sequence_010.c b/test/rt/source/test/test_sequence_010.c index 1a5833778..58ed0b73e 100644 --- a/test/rt/source/test/test_sequence_010.c +++ b/test/rt/source/test/test_sequence_010.c @@ -58,10 +58,11 @@ static MEMORYPOOL_DECL(mp1, sizeof (uint32_t), NULL); static GUARDEDMEMORYPOOL_DECL(gmp1, sizeof (uint32_t));
#endif
-static void *null_provider(size_t size, unsigned align) {
+static void *null_provider(size_t size, unsigned align, size_t offset) {
(void)size;
(void)align;
+ (void)offset;
return NULL;
}
|