Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[Manta] r1741 - trunk/Core/Util


Chronological Thread 
  • From: thiago@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [Manta] r1741 - trunk/Core/Util
  • Date: Fri, 28 Sep 2007 11:09:20 -0600 (MDT)

Author: thiago
Date: Fri Sep 28 11:09:20 2007
New Revision: 1741

Modified:
   trunk/Core/Util/CPUTime.cc
Log:
hack to get code to compile for itanium. Anything that needs CPUTime will be 
messed up, so if you care about this, implement it\!

Modified: trunk/Core/Util/CPUTime.cc
==============================================================================
--- trunk/Core/Util/CPUTime.cc  (original)
+++ trunk/Core/Util/CPUTime.cc  Fri Sep 28 11:09:20 2007
@@ -78,7 +78,14 @@
   if (!initialized) initialize();
   return clock();
 }
+
+#elif defined(__ia64__)
+CPUTime::SysClock CPUTime::currentTicks()
+{
+  return 0; //TODO: IMPLEMENT
+}
 #else
+
 /////////////////////////////
 // Linux and Apple (x86)
 /////////////////////////////




  • [Manta] r1741 - trunk/Core/Util, thiago, 09/28/2007

Archive powered by MHonArc 2.6.16.

Top of page