mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 14:10:30 -04:00
LTTng stands for Linux Trace Toolkit: next generation. It's a modern toolkit for tracing Linux (And now FreeBSD, only userspace now) programs. PR: 216142 Submitted by: mmokhi Reported by: mmokhi Reviewed by: feld, mat Approved by: feld, mat (mentors) Differential Revision: https://reviews.freebsd.org/D9200
12 lines
369 B
C
12 lines
369 B
C
--- src/bin/lttng/commands/view.c.orig 2016-11-29 22:48:37 UTC
|
|
+++ src/bin/lttng/commands/view.c
|
|
@@ -269,6 +269,9 @@ static char *build_live_path(char *sessi
|
|
{
|
|
int ret;
|
|
char *path = NULL;
|
|
+#if defined(__FreeBSD__)
|
|
+ const size_t HOST_NAME_MAX = sysconf(_SC_HOST_NAME_MAX);
|
|
+#endif
|
|
char hostname[HOST_NAME_MAX];
|
|
|
|
ret = gethostname(hostname, sizeof(hostname));
|