diff options
author | root <root> | 2008-12-18 16:05:14 +0000 |
---|---|---|
committer | root <root> | 2008-12-18 16:05:14 +0000 |
commit | 2765a97bc918b1ea0c8aff8c66535d34c01a8998 (patch) | |
tree | a4f0567d29d028231b9e96f9b91e3d30a92f2f60 /bench.c | |
parent | 9ed70a7432cdefeba5dc4d97049b36e8011a4ad9 (diff) |
*** empty log message ***
Diffstat (limited to 'bench.c')
-rw-r--r-- | bench.c | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -6,6 +6,7 @@ #include <sys/types.h> #include <sys/socket.h> #include <sys/ioctl.h> +#include <sys/stat.h> #include <math.h> #include <signal.h> #include <X11/Xlib.h> @@ -54,6 +55,7 @@ int main(void) int p[2]; int evfd = eventfd (0, 0); long ctr = 1; + struct stat sbuf; pipe (p); @@ -66,12 +68,15 @@ int main(void) for (lp = 0; lp < 100000; lp++) { s=stamp(); - snprintf (buf, 64, "<1.%llx>", (unsigned long long)0xa234567812ULL); + //snprintf (buf, 64, "<1.%llx>", (unsigned long long)0xa234567812ULL); + //getpgrp(); //kill (0, SIGURG); //write (evfd, &ctr, 8); //read (evfd, &ctr, 8); -// write (p[1], &buf, 1); -// read (p[0], &buf, 4); + //write (p[1], &buf, 1); + //read (p[0], &buf, 4); + //stat ("/etc/passwd", &sbuf); + free(malloc(8*1024*1024)); si[0]=measure(s); |