git-svn-id: http://ltt.polymtl.ca/svn@2460 04897980-b3bd-0310-b5e0-8ef037075253
[lttv.git] / lttng-xenomai / LinuxTraceToolkitViewer-0.8.61-xenoltt / ltt / facility.h
diff --git a/lttng-xenomai/LinuxTraceToolkitViewer-0.8.61-xenoltt/ltt/facility.h b/lttng-xenomai/LinuxTraceToolkitViewer-0.8.61-xenoltt/ltt/facility.h
new file mode 100644 (file)
index 0000000..65bca4f
--- /dev/null
@@ -0,0 +1,52 @@
+/* This file is part of the Linux Trace Toolkit trace reading library
+ * Copyright (C) 2003-2004 Michel Dagenais
+ *               2006 Mathieu Desnoyers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License Version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef FACILITY_H
+#define FACILITY_H
+
+#include <ltt/ltt.h>
+
+/* Facilities are obtained from an opened trace. The structures associated 
+   with a facility are released when the trace is closed. Each facility
+   is characterized by its name and checksum. */
+
+GQuark ltt_facility_name(LttFacility *f);
+
+guint32 ltt_facility_checksum(LttFacility *f);
+
+/* open facility */
+int ltt_facility_open(LttFacility *f, LttTrace * t, gchar * pathname);
+
+/* Discover the event types within the facility. The event type integer id
+   relative to the trace is from 0 to nb_event_types - 1. The event
+   type id within the trace is the relative id + the facility base event
+   id. */
+
+unsigned ltt_facility_base_id(LttFacility *f);
+
+guint8 ltt_facility_eventtype_number(LttFacility *f);
+
+LttEventType *ltt_facility_eventtype_get(LttFacility *f, guint8 i);
+
+LttEventType *ltt_facility_eventtype_get_by_name(LttFacility *f, GQuark name);
+
+void ltt_facility_close(LttFacility *f);
+
+#endif // FACILITY_H
+
This page took 0.023427 seconds and 4 git commands to generate.