~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to vio/viotest.cc

  • Committer: Brian Aker
  • Date: 2008-07-14 22:40:46 UTC
  • Revision ID: brian@tangent.org-20080714224046-x183907w9wp1txwv
Removed sql_manager. Ever heard of just setting up the OS to sync when you
want it to?

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
        int             fd = -1;
23
23
        char*           hh = "hshshsh\n";
24
24
 
 
25
        DBUG_ENTER("main");
 
26
        DBUG_PROCESS(argv[0]);
 
27
        DBUG_PUSH("d:t");
 
28
 
25
29
        fd = open("/dev/tty", O_WRONLY);
26
30
        if (fd<0)
27
31
        {
38
42
        delete fs;
39
43
        delete ss;
40
44
 
41
 
        return(0);
 
45
        DBUG_RETURN(0);
42
46
}
43
47