* times.cc (hires_ms::prime): Comment out call to timeBeginPeriod for now.
(hires_ms::usecs): Call prime if haven't called began_period(). * param.h: Don't define stuff that is already defined in endian.h.
This commit is contained in:
parent
c845f0c182
commit
b600843ae4
|
@ -1,3 +1,11 @@
|
||||||
|
2005-11-10 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
|
* times.cc (hires_ms::prime): Comment out call to timeBeginPeriod for
|
||||||
|
now.
|
||||||
|
(hires_ms::usecs): Call prime if haven't called began_period().
|
||||||
|
|
||||||
|
* param.h: Don't define stuff that is already defined in endian.h.
|
||||||
|
|
||||||
2005-11-10 Christopher Faylor <cgf@timesys.com>
|
2005-11-10 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* include/endian.h: Remove USE_BSD ifdef since it is never defined on
|
* include/endian.h: Remove USE_BSD ifdef since it is never defined on
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
BSD variant of this constant. */
|
BSD variant of this constant. */
|
||||||
#define DEV_BSIZE 1024
|
#define DEV_BSIZE 1024
|
||||||
|
|
||||||
|
#if 0 /* defined in endian.h */
|
||||||
/* Some autoconf'd packages check for endianness. When cross-building we
|
/* Some autoconf'd packages check for endianness. When cross-building we
|
||||||
can't run programs on the target. Fortunately, autoconf supports the
|
can't run programs on the target. Fortunately, autoconf supports the
|
||||||
definition of byte order in sys/param.h (that's us!).
|
definition of byte order in sys/param.h (that's us!).
|
||||||
|
@ -48,6 +49,7 @@
|
||||||
|
|
||||||
/* All known win32 systems are little endian. */
|
/* All known win32 systems are little endian. */
|
||||||
#define BYTE_ORDER LITTLE_ENDIAN
|
#define BYTE_ORDER LITTLE_ENDIAN
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef NULL
|
#ifndef NULL
|
||||||
#define NULL 0L
|
#define NULL 0L
|
||||||
|
|
|
@ -649,7 +649,9 @@ stupid_printf ("inited %d, minperiod %u, began_period %d", minperiod, began_peri
|
||||||
|
|
||||||
if (!began_period)
|
if (!began_period)
|
||||||
{
|
{
|
||||||
|
#if 0
|
||||||
timeBeginPeriod (minperiod);
|
timeBeginPeriod (minperiod);
|
||||||
|
#endif
|
||||||
began_period = true;
|
began_period = true;
|
||||||
stupid_printf ("timeBeginPeriod called");
|
stupid_printf ("timeBeginPeriod called");
|
||||||
}
|
}
|
||||||
|
@ -681,7 +683,7 @@ LONGLONG
|
||||||
hires_ms::usecs (bool justdelta)
|
hires_ms::usecs (bool justdelta)
|
||||||
{
|
{
|
||||||
stupid_printf ("before call to prime(), minperiod %u, process priority %d", minperiod, GetThreadPriority (GetCurrentThread ()));
|
stupid_printf ("before call to prime(), minperiod %u, process priority %d", minperiod, GetThreadPriority (GetCurrentThread ()));
|
||||||
if (!minperiod) /* NO_COPY variable */
|
if (!inited || !began_period) /* NO_COPY variable */
|
||||||
prime ();
|
prime ();
|
||||||
stupid_printf ("after call to prime(), process priority %d", GetThreadPriority (GetCurrentThread ()));
|
stupid_printf ("after call to prime(), process priority %d", GetThreadPriority (GetCurrentThread ()));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue