ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libeio/libeio.m4
(Generate patch)

Comparing libeio/libeio.m4 (file contents):
Revision 1.14 by root, Thu Jul 7 22:36:18 2011 UTC vs.
Revision 1.15 by root, Thu Jul 7 22:37:11 2011 UTC

126AC_CACHE_CHECK(for fallocate, ac_cv_fallocate, [AC_LINK_IFELSE([ 126AC_CACHE_CHECK(for fallocate, ac_cv_fallocate, [AC_LINK_IFELSE([
127#include <fcntl.h> 127#include <fcntl.h>
128int main (void) 128int main (void)
129{ 129{
130 int fd = 0; 130 int fd = 0;
131 int mode = FALLOC_FL_KEEP_SIZE; 131 int mode = 0;
132 off_t offset = 1; 132 off_t offset = 1;
133 off_t len = 1; 133 off_t len = 1;
134 int res; 134 int res;
135 res = fallocate (fd, mode, offset, len); 135 res = fallocate (fd, mode, offset, len);
136 return 0; 136 return 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines