-Wall -Wformat fixes
[lttv.git] / ltt / branches / poly / ltt / facility.h
CommitLineData
9c312311 1/* This file is part of the Linux Trace Toolkit trace reading library
2 * Copyright (C) 2003-2004 Michel Dagenais
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License Version 2.1 as published by the Free Software Foundation.
7 *
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 02111-1307, USA.
17 */
18
7c6b3cd7 19#ifndef FACILITY_H
20#define FACILITY_H
975e44c7 21
22#include <ltt/ltt.h>
23
1b82f325 24/* Facilities are obtained from an opened trace. The structures associated
25 with a facility are released when the trace is closed. Each facility
26 is characterized by its name and checksum. */
975e44c7 27
3aee1200 28GQuark ltt_facility_name(LttFacility *f);
975e44c7 29
3aee1200 30guint32 ltt_facility_checksum(LttFacility *f);
975e44c7 31
a5dcde2f 32/* open facility */
3aee1200 33int ltt_facility_open(LttFacility *f, LttTrace * t, gchar * pathname);
975e44c7 34
35/* Discover the event types within the facility. The event type integer id
1b82f325 36 relative to the trace is from 0 to nb_event_types - 1. The event
37 type id within the trace is the relative id + the facility base event
38 id. */
39
290dfc8c 40unsigned ltt_facility_base_id(LttFacility *f);
975e44c7 41
3aee1200 42guint8 ltt_facility_eventtype_number(LttFacility *f);
975e44c7 43
3aee1200 44LttEventType *ltt_facility_eventtype_get(LttFacility *f, guint8 i);
975e44c7 45
3aee1200 46LttEventType *ltt_facility_eventtype_get_by_name(LttFacility *f, GQuark name);
975e44c7 47
3aee1200 48void ltt_facility_close(LttFacility *f);
49
7c6b3cd7 50#endif // FACILITY_H
9c312311 51
This page took 0.037703 seconds and 4 git commands to generate.