Add copyright notices and some comments about status and TODO
[lttv.git] / ltt / branches / poly / include / ltt / facility.h
index f322fa89111b8e557f436b58f72c50f7cae429fd..8fda81e9b6f0470daf94c287dfec592f577fad8b 100644 (file)
@@ -1,3 +1,21 @@
+/* This file is part of the Linux Trace Toolkit trace reading library
+ * Copyright (C) 2003-2004 Michel Dagenais
+ *
+ * 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
 
    with a facility are released when the trace is closed. Each facility
    is characterized by its name and checksum. */
 
-char *ltt_facility_name(ltt_facility *f);
+char *ltt_facility_name(LttFacility *f);
 
-ltt_checksum ltt_facility_checksum(ltt_facility *f);
+LttChecksum ltt_facility_checksum(LttFacility *f);
 
+/* open facility */
+void ltt_facility_open(LttTrace * t, char * facility_name);
 
 /* 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(ltt_facility *f);
+unsigned ltt_facility_base_id(LttFacility *f);
 
-unsigned ltt_facility_eventtype_number(ltt_facility *f);
+unsigned ltt_facility_eventtype_number(LttFacility *f);
 
-ltt_eventtype *ltt_facility_eventtype_get(ltt_facility *f, unsigned i);
+LttEventType *ltt_facility_eventtype_get(LttFacility *f, unsigned i);
 
-ltt_eventtype *ltt_facility_eventtype_get_by_name(ltt_facility *f, char *name);
+LttEventType *ltt_facility_eventtype_get_by_name(LttFacility *f, char *name);
 
 #endif // FACILITY_H
+
This page took 0.029206 seconds and 4 git commands to generate.