X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ffailtest%2Ffailtest_undo.h;h=3bb953dedd3f1e4433f377036c51995d0d539d3b;hp=17bf35660a72a3ee91000b182d79a57a09accfbf;hb=926996e88c32445c874ff9c4f47f159db6b45995;hpb=97f93f50918abc3578bf868f0e1207eeb6ab1c83 diff --git a/ccan/failtest/failtest_undo.h b/ccan/failtest/failtest_undo.h index 17bf3566..3bb953de 100644 --- a/ccan/failtest/failtest_undo.h +++ b/ccan/failtest/failtest_undo.h @@ -1,3 +1,4 @@ +/* Licensed under LGPL - see LICENSE file for details */ #ifndef CCAN_FAILTEST_RESTORE_H #define CCAN_FAILTEST_RESTORE_H /* This file undoes the effect of failtest_override.h. */ @@ -15,8 +16,8 @@ failtest_realloc((ptr), (size), NULL, 0) #undef open -#define open(pathname, flags, ...) \ - failtest_open((pathname), (flags), NULL, 0, __VA_ARGS__) +#define open(pathname, ...) \ + failtest_open((pathname), NULL, 0, __VA_ARGS__) #undef pipe #define pipe(pipefd) \ @@ -30,7 +31,19 @@ #define write(fd, buf, count) \ failtest_write((fd), (buf), (count), NULL, 0) +#undef mmap +#define mmap(addr, length, prot, flags, fd, offset) \ + failtest_mmap((addr), (length), (prot), (flags), (fd), (offset), NULL, 0) + +#undef lseek +#define lseek(fd, off, whence) \ + failtest_lseek((fd), (off), (whence), NULL, 0) + #undef close #define close(fd) failtest_close(fd) +#undef fcntl +#define fcntl(fd, ...) \ + failtest_fcntl((fd), NULL, 0, __VA_ARGS__) + #endif /* CCAN_FAILTEST_RESTORE_H */