aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-08-12 21:56:05 -0400
committerMike Frysinger <vapier@gentoo.org>2012-08-12 21:56:43 -0400
commit53179a50a1a3e7a21e71cea6de46468deee87c69 (patch)
treeea636b0cf902e883740f058931426e7b87cb579e /headers.h
parentlibsandbox: fix hppa trace code (diff)
downloadsandbox-53179a50a1a3e7a21e71cea6de46468deee87c69.tar.gz
sandbox-53179a50a1a3e7a21e71cea6de46468deee87c69.tar.bz2
sandbox-53179a50a1a3e7a21e71cea6de46468deee87c69.zip
libsandbox: use process_vm_readv if available
Should speed up loading of strings from remote processes as we only have to do (usually) one syscall to extract the whole string in one shot. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'headers.h')
-rw-r--r--headers.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/headers.h b/headers.h
index 512c85b..42b7c25 100644
--- a/headers.h
+++ b/headers.h
@@ -122,6 +122,9 @@
#ifdef HAVE_SYS_USER_H
# include <sys/user.h>
#endif
+#ifdef HAVE_SYS_UIO_H
+# include <sys/uio.h>
+#endif
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif