remove flush
[ltt-control.git] / 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.025597 seconds and 4 git commands to generate.