X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Finclude%2Fltt%2Ffacility.h;h=ae1dd9f19155202cfd598708e2500ef37bc0ac3b;hb=daecc161cdd7a5931dc553307e3509010076ac35;hp=f322fa89111b8e557f436b58f72c50f7cae429fd;hpb=1b82f325932b2d092d1e0ff33f58afd9ede44d72;p=lttv.git diff --git a/ltt/branches/poly/include/ltt/facility.h b/ltt/branches/poly/include/ltt/facility.h index f322fa89..ae1dd9f1 100644 --- a/ltt/branches/poly/include/ltt/facility.h +++ b/ltt/branches/poly/include/ltt/facility.h @@ -7,9 +7,9 @@ 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); /* Discover the event types within the facility. The event type integer id @@ -17,12 +17,12 @@ ltt_checksum ltt_facility_checksum(ltt_facility *f); 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