~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/log.cc

  • Committer: Brian Aker
  • Date: 2008-11-03 21:00:47 UTC
  • mfrom: (520.9.5 devel)
  • Revision ID: brian@tangent.org-20081103210047-wfkeyyefrfl2vh4l
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
893
893
    int len=snprintf(buff, sizeof(buff), "%s, Version: %s (%s). "
894
894
                     "started with:\nTCP Port: %d, Named Pipe: %s\n",
895
895
                     my_progname, server_version, COMPILATION_COMMENT,
896
 
                     mysqld_port, ""
 
896
                     drizzled_port, ""
897
897
                     );
898
898
    end= my_stpncpy(buff + len, "Time                 Id Command    Argument\n",
899
899
                 sizeof(buff) - len);
3406
3406
 
3407
3407
  memcpy(data, tc_log_magic, sizeof(tc_log_magic));
3408
3408
  data[sizeof(tc_log_magic)]= (unsigned char)total_ha_2pc;
3409
 
  msync(data, tc_log_page_size, MS_SYNC);
 
3409
  // must cast data to (char *) for solaris. Arg1 is (void *) on linux
 
3410
  //   so the cast should be fine. 
 
3411
  msync((char *)data, tc_log_page_size, MS_SYNC);
3410
3412
  my_sync(fd, MYF(0));
3411
3413
  inited=5;
3412
3414
 
3612
3614
    sit down and relax - this can take a while...
3613
3615
    note - no locks are held at this point
3614
3616
  */
3615
 
  err= msync(syncing->start, 1, MS_SYNC);
 
3617
  // must cast data to (char *) for solaris. Arg1 is (void *) on linux
 
3618
  //   so the cast should be fine. 
 
3619
  err= msync((char *)syncing->start, 1, MS_SYNC);
3616
3620
  if(err==0)
3617
3621
    err= my_sync(fd, MYF(0));
3618
3622