Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2582936c66d54a7a47d2f29b42c7d93ee4ffa369 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*******************************************************************************
 * Copyright (c) 2008, 2018 Red Hat, Inc.
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    Elliott Baron <ebaron@redhat.com> - initial API and implementation
 *******************************************************************************/
#include <stdlib.h>
#include <unistd.h>

int main(int argc, char **argv) {
	long long bytes = 40;
	long long times = 1;
	if (argc > 1) {
		bytes = atoll(argv[1]);
		if (argc > 2) {
			times = atoll(argv[2]);
		}
	}
	else {
		bytes = 40;
	}

	while (times-- > 0) {
		int *foo();
		void bar(int *);
		int *ptr1 = (int *)malloc(bytes);
		int *ptr2 = foo();
		int *ptr3 = (int *)malloc(bytes);
		int *ptr4 = foo();
		int *ptr5 = (int *)malloc(bytes);
		int *ptr6 = foo();

		free(ptr1);
		bar(ptr2);
		free(ptr3);
		bar(ptr4);
		free(ptr5);
		bar(ptr6);
	}
	return 0;
}

int *foo(long long bytes) {
	return (int *)malloc(bytes);
}

void bar(int *ptr) {
	free(ptr);
}

Back to the top