From: <zn...@us...> - 2009-03-17 06:28:08
|
Revision: 852 http://crackerjack.svn.sourceforge.net/crackerjack/?rev=852&view=rev Author: znz Date: 2009-03-17 06:27:56 +0000 (Tue, 17 Mar 2009) Log Message: ----------- add syscall.txt Added Paths: ----------- trunk/crackerjack/testcases/eventfd/syscall.txt trunk/crackerjack/testcases/fallocate/syscall.txt trunk/crackerjack/testcases/timerfd_create/syscall.txt trunk/crackerjack/testcases/timerfd_gettime/syscall.txt trunk/crackerjack/testcases/timerfd_settime/syscall.txt trunk/crackerjack/testcases/utimensat/syscall.txt Added: trunk/crackerjack/testcases/eventfd/syscall.txt =================================================================== --- trunk/crackerjack/testcases/eventfd/syscall.txt (rev 0) +++ trunk/crackerjack/testcases/eventfd/syscall.txt 2009-03-17 06:27:56 UTC (rev 852) @@ -0,0 +1 @@ +323 eventfd Added: trunk/crackerjack/testcases/fallocate/syscall.txt =================================================================== --- trunk/crackerjack/testcases/fallocate/syscall.txt (rev 0) +++ trunk/crackerjack/testcases/fallocate/syscall.txt 2009-03-17 06:27:56 UTC (rev 852) @@ -0,0 +1 @@ +324 fallocate Added: trunk/crackerjack/testcases/timerfd_create/syscall.txt =================================================================== --- trunk/crackerjack/testcases/timerfd_create/syscall.txt (rev 0) +++ trunk/crackerjack/testcases/timerfd_create/syscall.txt 2009-03-17 06:27:56 UTC (rev 852) @@ -0,0 +1 @@ +322 timerfd_create Added: trunk/crackerjack/testcases/timerfd_gettime/syscall.txt =================================================================== --- trunk/crackerjack/testcases/timerfd_gettime/syscall.txt (rev 0) +++ trunk/crackerjack/testcases/timerfd_gettime/syscall.txt 2009-03-17 06:27:56 UTC (rev 852) @@ -0,0 +1 @@ +326 timerfd_gettime Added: trunk/crackerjack/testcases/timerfd_settime/syscall.txt =================================================================== --- trunk/crackerjack/testcases/timerfd_settime/syscall.txt (rev 0) +++ trunk/crackerjack/testcases/timerfd_settime/syscall.txt 2009-03-17 06:27:56 UTC (rev 852) @@ -0,0 +1 @@ +325 timerfd_settime Added: trunk/crackerjack/testcases/utimensat/syscall.txt =================================================================== --- trunk/crackerjack/testcases/utimensat/syscall.txt (rev 0) +++ trunk/crackerjack/testcases/utimensat/syscall.txt 2009-03-17 06:27:56 UTC (rev 852) @@ -0,0 +1 @@ +320 utimensat This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cas...@us...> - 2010-12-22 17:22:54
|
Revision: 1007 http://crackerjack.svn.sourceforge.net/crackerjack/?rev=1007&view=rev Author: casparant Date: 2010-12-22 17:22:48 +0000 (Wed, 22 Dec 2010) Log Message: ----------- Fix redefinition of 'struct flock' error in inotify_add/rm_watch testcases, mixing using glibc headers and kernel headers causes including conflict: make[1]: Entering directory `/root/crackerjack/testcases/inotify_rm_watch/basic' gcc -Wall -O2 -I/lib/modules/2.6.32-19.el6.i686/build/include -o test basic.c ../../common.j.h/common_j_h.c /lib/modules/2.6.32-19.el6.i686/build/include/asm-generic/fcntl.h:139: error: redefinition of 'struct flock' /lib/modules/2.6.32-19.el6.i686/build/include/linux/fcntl.h:16:1: warning: "F_DUPFD_CLOEXEC" redefined /usr/include/bits/fcntl.h:107:1: warning: this is the location of the previous definition Replace kernel headers to glibc headers. Signed-off-by: Caspar Zhang <cz...@re...> Modified Paths: -------------- trunk/crackerjack/testcases/inotify_add_watch/basic/basic.c trunk/crackerjack/testcases/inotify_rm_watch/basic/basic.c Modified: trunk/crackerjack/testcases/inotify_add_watch/basic/basic.c =================================================================== --- trunk/crackerjack/testcases/inotify_add_watch/basic/basic.c 2010-12-21 08:24:59 UTC (rev 1006) +++ trunk/crackerjack/testcases/inotify_add_watch/basic/basic.c 2010-12-22 17:22:48 UTC (rev 1007) @@ -27,6 +27,7 @@ #include <sys/syscall.h> #include <sys/types.h> #include <sys/stat.h> +#include <sys/inotify.h> #include <fcntl.h> #include <dirent.h> #include <getopt.h> @@ -37,7 +38,6 @@ #include <unistd.h> #include <libgen.h> #include <limits.h> -#include <linux/inotify.h> #include "../../common.j.h/include_j_h.h" Modified: trunk/crackerjack/testcases/inotify_rm_watch/basic/basic.c =================================================================== --- trunk/crackerjack/testcases/inotify_rm_watch/basic/basic.c 2010-12-21 08:24:59 UTC (rev 1006) +++ trunk/crackerjack/testcases/inotify_rm_watch/basic/basic.c 2010-12-22 17:22:48 UTC (rev 1007) @@ -27,6 +27,7 @@ #include <sys/syscall.h> #include <sys/types.h> #include <sys/stat.h> +#include <sys/inotify.h> #include <fcntl.h> #include <dirent.h> #include <getopt.h> @@ -37,7 +38,6 @@ #include <unistd.h> #include <libgen.h> #include <limits.h> -#include <linux/inotify.h> #include "../../common.j.h/include_j_h.h" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |