summaryrefslogtreecommitdiff
path: root/com32/modules/debug.c
blob: 1026ebf34644fdba348f1d1f0a2897d5aa9aa6aa (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
/* ----------------------------------------------------------------------- *
 *
 *   Copyright 2013 Intel Corporation; author: Matt Fleming
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 *   Boston MA 02110-1301, USA; either version 2 of the License, or
 *   (at your option) any later version; incorporated herein by reference.
 *
 * ----------------------------------------------------------------------- */

#include <syslinux/debug.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

static char *progname;

static void usage(void)
{
    fprintf(stderr, "Usage: %s [-e|-d] <func1> [<func2>, ...]\n", progname);
}

int main(int argc, char *argv[])
{
    bool enable;
    int i;

    progname = argv[0];

    if (argc < 3) {
	usage();
	return -1;
    }

    if (!strncmp(argv[1], "-e", 2))
	enable = true;
    else if (!strncmp(argv[1], "-d", 2))
	enable = false;
    else {
	usage();
	return -1;
    }

    for (i = 2; i < argc; i++) {
	char *str = argv[i];

	if (syslinux_debug(str, enable) < 0)
	    fprintf(stderr, "Failed to debug symbol \"%s\"\n", str);
    }

    return 0;
}