remove flush
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 2 Feb 2006 20:14:07 +0000 (20:14 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 2 Feb 2006 20:14:07 +0000 (20:14 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@1512 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/lttd/lttd.c

index 27240882189de464882d2f2ab1d64fa674fc8f29..2601d805df0187e82019d1460ffbfd5efeee219f 100644 (file)
@@ -332,8 +332,14 @@ int read_subbuffer(struct fd_pair *pair)
                perror("Error in writing to file");
                goto write_error;
        }
-
-
+#if 0
+       err = fsync(pair->trace);
+       if(err < 0) {
+               ret = errno;
+               perror("Error in writing to file");
+               goto write_error;
+       }
+#endif //0
 write_error:
        err = ioctl(pair->channel, RELAYFS_PUT_SUBBUF, &consumed_old);
        if(err != 0) {
@@ -644,7 +650,7 @@ int main(int argc, char ** argv)
                        break;
                }
                if((int)tret != 0) {
-                       printf("Error %s occured in thread %u\n", strerror(-(int)tret), i);
+                       printf("Error %s occured in thread %u\n", strerror((int)tret), i);
                }
        }
 
This page took 0.023828 seconds and 4 git commands to generate.