diff options
author | Vsevolod Stakhov <vsevolod@FreeBSD.org> | 2005-08-28 09:05:53 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@FreeBSD.org> | 2005-08-28 09:05:53 +0000 |
commit | 0f17a23c50e7d899046eb1edca8558abab5e90c2 (patch) | |
tree | 6544766de6b6f7c39659acfab2efff6269c92abb /benchmarks/libmicro/files/patch-writev.c | |
parent | Upgrade to 1.0.2. (diff) |
Add libmicro - a set of portable benchmarks of system calls from
opensolaris project.
Approved by: perky (mentor)
In collaboration with: gnn
Diffstat (limited to '')
-rw-r--r-- | benchmarks/libmicro/files/patch-writev.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/benchmarks/libmicro/files/patch-writev.c b/benchmarks/libmicro/files/patch-writev.c new file mode 100644 index 000000000000..5cbfb3af7342 --- /dev/null +++ b/benchmarks/libmicro/files/patch-writev.c @@ -0,0 +1,20 @@ +--- writev.c.orig Sat Aug 6 16:16:18 2005 ++++ writev.c Sat Aug 6 16:17:00 2005 +@@ -32,12 +32,17 @@ + #pragma ident "@(#)writev.c 1.7 05/08/04 SMI" + #endif + ++#include <sys/types.h> + #include <sys/uio.h> + #include <limits.h> + #include <unistd.h> + #include <stdlib.h> + #include <stdio.h> + #include <fcntl.h> ++ ++#ifndef UIO_MAXIOV ++#define UIO_MAXIOV 1024 ++#endif + + #ifndef IOV_MAX + #define IOV_MAX UIO_MAXIOV |