diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7bd7c2356b..454c0a7ef1 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,14 @@ The license applies to all entries newer than 2009-04-28. */ +2011-04-07 11:56 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/src/vm/thread.c + * cleaned comment + + * harbour/src/common/hbdate.c + ! fixed typo in hb_dateMilliSeconds() on platforms using ftime() + function. + 2011-04-06 19:39 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbqt/qtcore/hbqtcore.h * contrib/hbqt/qtgui/hbqt_hbqabstractitemmodel.cpp diff --git a/harbour/src/common/hbdate.c b/harbour/src/common/hbdate.c index 15f9f0279f..ff904ff12b 100644 --- a/harbour/src/common/hbdate.c +++ b/harbour/src/common/hbdate.c @@ -184,7 +184,7 @@ HB_MAXUINT hb_dateMilliSeconds( void ) ftime( &tb ); return ( ( HB_MAXUINT ) tb.time + ( HB_MAXUINT ) HB_SYS_DATE_BASE * HB_SECONDS_PER_DAY ) * 1000 + - tb.time; + tb.millitm; } #endif } diff --git a/harbour/src/vm/thread.c b/harbour/src/vm/thread.c index 9da9919c32..7ef7c6930d 100644 --- a/harbour/src/vm/thread.c +++ b/harbour/src/vm/thread.c @@ -1527,7 +1527,7 @@ HB_FUNC( HB_THREADTERMINATEALL ) /* hb_threadOnce( @ [, ] ) -> * Execute only once. is variable which holds * the execution status and have to be initialized to NIL. In most of - * cases it will be simple staticvariable in user code. + * cases it will be simple static variable in user code. * When is executed by a thread all other threads which call * hb_threadOnce() are stopped even if they use different . * Because hb_threadOnce() uses single recursive mutex then deadlock caused