2019-04-30 16:54:58 -04:00
|
|
|
#include <pthread.h>
|
2020-06-17 16:39:50 -04:00
|
|
|
#include <stdio.h>
|
2019-04-30 16:54:58 -04:00
|
|
|
|
|
|
|
#include <malloc.h>
|
|
|
|
|
2020-06-17 16:39:50 -04:00
|
|
|
#include "test_util.h"
|
|
|
|
|
|
|
|
OPTNONE static void leak_memory(void) {
|
2021-12-26 09:34:37 -05:00
|
|
|
(void)!malloc(1024 * 1024 * 1024);
|
|
|
|
(void)!malloc(16);
|
|
|
|
(void)!malloc(32);
|
|
|
|
(void)!malloc(4096);
|
2019-04-30 16:54:58 -04:00
|
|
|
}
|
|
|
|
|
2020-06-17 16:39:50 -04:00
|
|
|
static void *do_work(void *p) {
|
2019-04-30 16:54:58 -04: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 14:44:45 -05:00
|
|
|
#if defined(__GLIBC__) || defined(__ANDROID__)
|
2019-04-30 16:54:58 -04:00
|
|
|
malloc_info(0, stdout);
|
2021-12-23 14:44:45 -05:00
|
|
|
#endif
|
2019-04-30 16:54:58 -04:00
|
|
|
}
|