X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-workers-bounces using -f Content-Class: urn:content-classes:message From: To: Subject: RE: DJGPP 3.04 & uclock_t & gcc 3.0.4 on Windows-2000 Date: Mon, 22 Apr 2002 16:27:12 +0200 Message-ID: <553e01c1ea09$cae6c090$c26897c2@hetnet.local> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Mailer: Microsoft CDO for Windows 2000 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Thread-Index: AcHqCcrm0u1jXlX1EdaEKABQi2aXFQ== Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id g3MEMPr31855 Reply-To: djgpp-workers AT delorie DOT com > for (i = 0; i < TOTAL_TIMES; i++) > { > start_uclock = acuclock(); > printf ("[%d] start_uclock = %lld (rv %lld - base %lld \n\n", i, > end_uclock, ac_rv, ac_base); You print end_uclock (so who knows what start_uclock might be..) > fflush (NULL); > assert (start_uclock >= 0); /* THIS IS THE START ASSERT !!!!! */ > end_uclock = acuclock(); > printf ("[%d] end_uclock = %lld (rv %lld - base %lld \n\n", i, >end_uclock, ac_rv, ac_base); > fflush (NULL); > assert (end_uclock >= 0); > > assert (start_uclock < end_uclock); > }