From d28686c15dba4a8080a2217c92411b93875068dc Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Tue, 17 Apr 2012 10:49:07 -0400 Subject: [PATCH] Fix: add missing uaccess.h include (for ARM) "What required uaccess.h ?" I was getting the following error: syscalls_pointers_override.h:6:1: error: implicit declaration of function ?strlen_user? I found that strlen_user was defined in asm/uaccess.h, which is included by linux/uaccess.h. Suggested-by: Ryan Kyser Signed-off-by: Mathieu Desnoyers --- probes/lttng-events.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/probes/lttng-events.h b/probes/lttng-events.h index 9262f5de..05e17b9b 100644 --- a/probes/lttng-events.h +++ b/probes/lttng-events.h @@ -18,7 +18,7 @@ * 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 #include #include "lttng.h" #include "lttng-types.h" -- 2.34.1