Revert "Turn base address dump into experimental feature"
authorPaul Woegerer <paul_woegerer@mentor.com>
Mon, 14 Jul 2014 08:38:25 +0000 (10:38 +0200)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 16 Jul 2014 14:36:27 +0000 (10:36 -0400)
This reverts commit b11abb674e50c67e3410ab2bd5d0a263e88b73ba.

Signed-off-by: Paul Woegerer <paul_woegerer@mentor.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
doc/man/lttng-ust.3
liblttng-ust/lttng-ust-baddr.c

index c72bd32bd116a90b2546e1bb33ac4b27c88b0a28..117fe985ffa6f391b288705e12d2862c0b0a62fc 100644 (file)
@@ -397,13 +397,9 @@ Pthread identifier. Can be used on architectures where pthread_t maps
 nicely to an unsigned long type.
 .PP
 
-.SH "BASE ADDRESS STATEDUMP (Experimental feature)"
+.SH "BASE ADDRESS STATEDUMP"
 
 .PP
-Warning: This is an experimental feature known to cause deadlocks when the
-traced application uses fork, clone or daemon. Only use it for debugging and
-testing.  Do NOT use it in production.
-
 If an application that uses liblttng-ust.so becomes part of a session,
 information about its currently loaded shared objects will be traced to the
 session at session-enable time. To record this information, the following event
@@ -440,8 +436,8 @@ specified in milliseconds. The value 0 means "don't wait". The value
 recommended for applications with time constraints on the process
 startup time.
 .PP
-.IP "LTTNG_UST_WITH_EXPERIMENTAL_BADDR_STATEDUMP"
-Experimentally allow liblttng-ust to perform a base-address statedump on session-enable.
+.IP "LTTNG_UST_WITHOUT_BADDR_STATEDUMP"
+Prevent liblttng-ust to perform a base-address statedump on session-enable.
 .PP
 
 .SH "SEE ALSO"
index dec7e82d6e9c84afb065a1d33ec9ea0f53760c5c..922899b44e50406042d47480e713686350a3c703 100644 (file)
@@ -176,7 +176,7 @@ int lttng_ust_baddr_statedump(void *owner)
 {
        struct extract_data data;
 
-       if (!getenv("LTTNG_UST_WITH_EXPERIMENTAL_BADDR_STATEDUMP"))
+       if (getenv("LTTNG_UST_WITHOUT_BADDR_STATEDUMP"))
                return 0;
 
        data.owner = owner;
This page took 0.025553 seconds and 4 git commands to generate.