2019-05-01 02:24:58 +05:30
|
|
|
#include <pthread.h>
|
2020-06-18 02:09:50 +05:30
|
|
|
#include <stdio.h>
|
2019-05-01 02:24:58 +05:30
|
|
|
|
2022-02-07 16:24:57 +05:30
|
|
|
#if defined(__GLIBC__) || defined(__ANDROID__)
|
2019-05-01 02:24:58 +05:30
|
|
|
#include <malloc.h>
|
2022-02-07 16:24:57 +05:30
|
|
|
#endif
|
2019-05-01 02:24:58 +05:30
|
|
|
|
2020-06-18 02:09:50 +05:30
|
|
|
#include "test_util.h"
|
2022-01-04 22:26:48 +05:30
|
|
|
#include "../util.h"
|
2020-06-18 02:09:50 +05:30
|
|
|
|
|
|
|
OPTNONE static void leak_memory(void) {
|
2021-12-26 20:04:37 +05:30
|
|
|
(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
|
|
|
}
|