~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_getsystime.cc

  • Committer: Monty Taylor
  • Date: 2008-12-18 06:30:02 UTC
  • mto: This revision was merged to the branch mainline in revision 714.
  • Revision ID: monty@bitters-20081218063002-a5yc590075j75xar
Fixed a my_time() holdout.

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
{
172
172
#if defined(HAVE_GETHRTIME)
173
173
  (void) microtime;
174
 
  return my_time(0);                            /* Cached time */
 
174
  return time(0);                            /* Cached time */
175
175
#else
176
176
  return (time_t) (microtime / 1000000);
177
177
#endif  /* defined(HAVE_GETHRTIME) */