Launch the health management thread using lttng_thread
[lttng-tools.git] / src / bin / lttng-sessiond / Makefile.am
1 AM_CPPFLAGS +=-DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \
2 -DINSTALL_LIB_PATH=\""$(libdir)"\"
3
4 if EMBED_HELP
5 AM_CPPFLAGS += -I$(top_builddir)/doc/man
6 endif
7
8 bin_PROGRAMS = lttng-sessiond
9
10 lttng_sessiond_SOURCES = utils.c utils.h \
11 trace-kernel.c trace-kernel.h \
12 kernel.c kernel.h \
13 ust-ctl.h ust-app.h trace-ust.h ust-thread.h \
14 ust-registry.h \
15 context.c context.h \
16 channel.c channel.h \
17 event.c event.h \
18 shm.c shm.h \
19 consumer.c consumer.h \
20 session.c session.h \
21 modprobe.c modprobe.h kern-modules.h \
22 lttng-ust-ctl.h lttng-ust-abi.h lttng-ust-error.h \
23 fd-limit.c fd-limit.h \
24 kernel-consumer.c kernel-consumer.h \
25 consumer.h \
26 health-sessiond.h \
27 cmd.c cmd.h \
28 buffer-registry.c buffer-registry.h \
29 testpoint.h ht-cleanup.c ht-cleanup.h \
30 snapshot.c snapshot.h \
31 agent.c agent.h \
32 save.h save.c \
33 load-session-thread.h load-session-thread.c \
34 lttng-syscall.h lttng-syscall.c \
35 notification-thread.h notification-thread.c \
36 notification-thread-internal.h \
37 notification-thread-commands.h notification-thread-commands.c \
38 notification-thread-events.h notification-thread-events.c \
39 sessiond-config.h sessiond-config.c \
40 rotate.h rotate.c \
41 rotation-thread.h rotation-thread.c \
42 timer.c timer.h \
43 ready.c \
44 globals.c \
45 thread-utils.c \
46 process-utils.c \
47 thread.c thread.h \
48 health.c
49
50 if HAVE_LIBLTTNG_UST_CTL
51 lttng_sessiond_SOURCES += trace-ust.c ust-registry.c ust-app.c \
52 ust-consumer.c ust-consumer.h ust-thread.c \
53 ust-metadata.c ust-clock.h agent-thread.c agent-thread.h \
54 ust-field-utils.h ust-field-utils.c
55 endif
56
57 # Add main.c at the end for compile order
58 lttng_sessiond_SOURCES += lttng-sessiond.h main.c
59
60 # link on liblttngctl for check if sessiond is already alive.
61 lttng_sessiond_LDADD = -lurcu-common -lurcu $(KMOD_LIBS) \
62 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
63 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
64 $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \
65 $(top_builddir)/src/common/hashtable/libhashtable.la \
66 $(top_builddir)/src/common/libcommon.la \
67 $(top_builddir)/src/common/compat/libcompat.la \
68 $(top_builddir)/src/common/relayd/librelayd.la \
69 $(top_builddir)/src/common/testpoint/libtestpoint.la \
70 $(top_builddir)/src/common/health/libhealth.la \
71 $(top_builddir)/src/common/config/libconfig.la \
72 $(top_builddir)/src/common/string-utils/libstring-utils.la
73
74
75 if HAVE_LIBLTTNG_UST_CTL
76 lttng_sessiond_LDADD += -llttng-ust-ctl
77 endif
This page took 0.030409 seconds and 4 git commands to generate.