#ifndef LTTNG_EVENT_INTERNAL_H
#define LTTNG_EVENT_INTERNAL_H
+#include <common/macros.h>
+#include <lttng/event.h>
+
struct lttng_userspace_probe_location;
struct lttng_event_extended {
struct lttng_userspace_probe_location *probe_location;
};
+LTTNG_HIDDEN
+struct lttng_event *lttng_event_copy(const struct lttng_event *event);
+
#endif /* LTTNG_EVENT_INTERNAL_H */
*/
extern struct lttng_event *lttng_event_create(void);
-extern struct lttng_event *lttng_event_copy(const struct lttng_event *event);
-
/*
* Destroy an lttng_event.
*
#include <common/config/session-config.h>
#include <common/dynamic-buffer.h>
#include <lttng/userspace-probe-internal.h>
+#include <lttng/event-internal.h>
#include "lttng-sessiond.h"
#include "buffer-registry.h"
buffer-view.h buffer-view.c \
location.c \
waiter.h waiter.c \
- userspace-probe.c
+ userspace-probe.c event.c
libcommon_la_LIBADD = \
$(top_builddir)/src/common/config/libconfig.la \
--- /dev/null
+/*
+ * Copyright (C) 2018 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ *
+ * 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 only,
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <lttng/event-internal.h>
+#include <common/error.h>
+
+LTTNG_HIDDEN
+struct lttng_event *lttng_event_copy(const struct lttng_event *event)
+{
+ struct lttng_event *new_event;
+ struct lttng_event_extended *new_event_extended;
+
+ new_event = zmalloc(sizeof(*event));
+ if (!new_event) {
+ PERROR("Error allocating event structure");
+ goto end;
+ }
+
+ /* Copy the content of the old event. */
+ memcpy(new_event, event, sizeof(*event));
+
+ /*
+ * We need to create a new extended since the previous pointer is now
+ * invalid.
+ */
+ new_event_extended = zmalloc(sizeof(*new_event_extended));
+ if (!new_event_extended) {
+ PERROR("Error allocating event extended structure");
+ goto error;
+ }
+
+ new_event->extended.ptr = new_event_extended;
+end:
+ return new_event;
+error:
+ free(new_event);
+ goto end;
+}
goto end;
}
-struct lttng_event *lttng_event_copy(const struct lttng_event *event)
-{
- struct lttng_event *new_event;
- struct lttng_event_extended *new_event_extended;
-
- new_event = zmalloc(sizeof(*event));
- if (!new_event) {
- PERROR("Error allocating event structure");
- goto end;
- }
-
- /* Copy the content of the old event. */
- memcpy(new_event, event, sizeof(*event));
-
- /*
- * We need to create a new extended since the previous pointer is now
- * invalid.
- */
- new_event_extended = zmalloc(sizeof(*new_event_extended));
- if (!new_event_extended) {
- PERROR("Error allocating event extended structure");
- goto error;
- }
-
- new_event->extended.ptr = new_event_extended;
-end:
- return new_event;
-error:
- free(new_event);
- goto end;
-}
-
void lttng_event_destroy(struct lttng_event *event)
{
struct lttng_event_extended *event_extended;