hardened_malloc/test/malloc_info.c

36 lines
695 B
C
Raw Normal View History

2019-05-01 02:24:58 +05:30
#include <pthread.h>
#include <stdio.h>
2019-05-01 02:24:58 +05:30
#if defined(__GLIBC__) || defined(__ANDROID__)
2019-05-01 02:24:58 +05:30
#include <malloc.h>
#endif
2019-05-01 02:24:58 +05:30
#include "test_util.h"
2022-01-04 22:26:48 +05:30
#include "../util.h"
OPTNONE static void leak_memory(void) {
(void)!malloc(1024 * 1024 * 1024);
(void)!malloc(16);
(void)!malloc(32);
(void)!malloc(4096);
2019-05-01 02:24:58 +05:30
}
2022-01-04 22:26:48 +05:30
static void *do_work(UNUSED void *p) {
2019-05-01 02:24:58 +05:30
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-24 01:14:45 +05:30
#if defined(__GLIBC__) || defined(__ANDROID__)
2019-05-01 02:24:58 +05:30
malloc_info(0, stdout);
2021-12-24 01:14:45 +05:30
#endif
2019-05-01 02:24:58 +05:30
}