hardened_malloc/test/malloc_info.c

36 lines
695 B
C
Raw Normal View History

2019-04-30 20:54:58 +00:00
#include <pthread.h>
#include <stdio.h>
2019-04-30 20:54:58 +00:00
#if defined(__GLIBC__) || defined(__ANDROID__)
2019-04-30 20:54:58 +00:00
#include <malloc.h>
#endif
2019-04-30 20:54:58 +00:00
#include "test_util.h"
2022-01-04 16:56:48 +00:00
#include "../util.h"
OPTNONE static void leak_memory(void) {
(void)!malloc(1024 * 1024 * 1024);
(void)!malloc(16);
(void)!malloc(32);
(void)!malloc(4096);
2019-04-30 20:54:58 +00:00
}
2022-01-04 16:56:48 +00:00
static void *do_work(UNUSED void *p) {
2019-04-30 20:54:58 +00:00
leak_memory();
return NULL;
}
int main(void) {
pthread_t thread[4];
for (int i = 0; i < 4; i++) {
pthread_create(&thread[i], NULL, do_work, NULL);
}
for (int i = 0; i < 4; i++) {
pthread_join(thread[i], NULL);
}
2021-12-23 19:44:45 +00:00
#if defined(__GLIBC__) || defined(__ANDROID__)
2019-04-30 20:54:58 +00:00
malloc_info(0, stdout);
2021-12-23 19:44:45 +00:00
#endif
2019-04-30 20:54:58 +00:00
}