X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=include%2Flttng%2Ftracepoint-types.h;h=ceb476a6f9891d760f0e43e60bda928aed2acae0;hb=891d6b550bf16672b0c3a7b35362f231d6e10fc1;hp=fad23bc488924ed2929730b118c0c17f2a57e67d;hpb=b728d87e617189fe9898a9492a559ecf949d2348;p=lttng-ust.git diff --git a/include/lttng/tracepoint-types.h b/include/lttng/tracepoint-types.h index fad23bc4..ceb476a6 100644 --- a/include/lttng/tracepoint-types.h +++ b/include/lttng/tracepoint-types.h @@ -1,34 +1,25 @@ -#ifndef _LTTNG_TRACEPOINT_TYPES_H -#define _LTTNG_TRACEPOINT_TYPES_H - /* - * Copyright (c) 2011 - Mathieu Desnoyers + * SPDX-License-Identifier: MIT * - * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED - * OR IMPLIED. ANY USE IS AT YOUR OWN RISK. - * - * Permission is hereby granted to use or copy this program - * for any purpose, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. + * Copyright (C) 2011-2012 Mathieu Desnoyers */ -struct tracepoint_probe { - void *callback; - void *priv; +#ifndef _LTTNG_TRACEPOINT_TYPES_H +#define _LTTNG_TRACEPOINT_TYPES_H + +struct lttng_ust_tracepoint_probe { + void (*func)(void); + void *data; }; -struct tracepoint { +#define LTTNG_UST_TRACEPOINT_PADDING 16 +struct lttng_ust_tracepoint { const char *name; int state; - struct tracepoint_probe *probes; -}; - -struct tracepoint_lib { - struct cds_list_head list; - struct tracepoint tracepoints_start; - int tracepoints_count; + struct lttng_ust_tracepoint_probe *probes; + int *tracepoint_provider_ref; + const char *signature; + char padding[LTTNG_UST_TRACEPOINT_PADDING]; }; #endif /* _LTTNG_TRACEPOINT_TYPES_H */