summaryrefslogtreecommitdiff
path: root/trace/default.c
blob: 42fdb6b6a43fa96206d00b69e12c9b02d50805b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Default implementation for backend initialization from commandline.
 *
 * Copyright (C) 2011 LluĂ­s Vilanova <vilanova@ac.upc.edu>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 */

#include "trace/control.h"


bool trace_backend_init(const char *file)
{
    if (file) {
        fprintf(stderr, "error: -trace file=...: "
                "option not supported by the selected tracing backend\n");
        return false;
    }
    return true;
}