Consider
commitf2c5f5a449199238ed8e64796d0c26b1e3bc21dd
authorPatrick Welche <pwelche@src.gnome.org>
Tue, 3 Mar 2009 19:06:01 +0000 (3 19:06 +0000)
committerPatrick Welche <pwelche@src.gnome.org>
Tue, 3 Mar 2009 19:06:01 +0000 (3 19:06 +0000)
tree75b288b6fcf1ce836a53b700de65dcac9af35356
parentb920306e74c1fe0e90b39ce898f84fdcb0c4e49d
Consider

struct timeval {
        long    tv_sec;         /* seconds */
        long    tv_usec;        /* and microseconds */
};

and wish that "long" were time_t. If clock_gettime existed
everywhere, that would be a good replacement for gettimeofday
as struct timespec always used time_t. Visual studio doesn't
have clock_gettime, so we need the #ifdefs anyway...

svn path=/trunk/; revision=3647
ChangeLog
Src/DasherCore/BasicLog.cpp
Src/DasherCore/FileLogger.cpp
Src/DasherCore/TimeSpan.cpp
Src/DasherCore/UserLog.cpp