summaryrefslogtreecommitdiff
path: root/detector/detector.c
blob: c779319d206e9044fbf46d7333a869e52fe3fa39 (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
 * Copyright 2012  Samsung Electronics Co., Ltd
 *
 * Licensed under the Flora License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.tizenopensource.org/license
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>

#include <heap-monitor.h>

int errno;
static char execpath[4096];

int destructor(void) __attribute__((destructor));
int constructor(void) __attribute__((constructor));

void (*__malloc_initialize_hook)(void) = heap_monitor_init;

int constructor(void)
{
	int fd;

	snprintf(execpath, sizeof(execpath), "/proc/%d/cmdline", getpid());

	fd = open(execpath, O_RDONLY);
	if (fd >= 0) {
		int len;
		len = read(fd, execpath, sizeof(execpath));
		close(fd);

		printf("execpath: [%s]\n", execpath);

		heap_monitor_add_target("");
		heap_monitor_start();
	} else {
		printf("open: %s\n", strerror(errno));
	}

	return 0;
}

int destructor(void)
{
	if (strlen(execpath)) {
		int usage;

		heap_monitor_stop();
		usage = heap_monitor_target_usage("");
		heap_monitor_del_target("");

		printf("execpath: [%s]\n", execpath);
		printf("Leak: %d\n", usage);
	}
	return 0;
}

/* End of a file */