chiark / gitweb /
Remove src/boot
[elogind.git] / src / bootchart / svg.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright (C) 2009-2013 Intel Corporation
9
10   Authors:
11     Auke Kok <auke-jan.h.kok@intel.com>
12
13   systemd is free software; you can redistribute it and/or modify it
14   under the terms of the GNU Lesser General Public License as published by
15   the Free Software Foundation; either version 2.1 of the License, or
16   (at your option) any later version.
17
18   systemd is distributed in the hope that it will be useful, but
19   WITHOUT ANY WARRANTY; without even the implied warranty of
20   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21   Lesser General Public License for more details.
22
23   You should have received a copy of the GNU Lesser General Public License
24   along with systemd; If not, see <http://www.gnu.org/licenses/>.
25 ***/
26
27 int svg_do(FILE *of,
28            const char *build,
29            struct list_sample_data *head,
30            struct ps_struct *ps_first,
31            int n_samples,
32            int pscount,
33            int n_cpus,
34            double graph_start,
35            double log_start,
36            double interval,
37            int overrun);