[llvm-commits] CVS: llvm/lib/System/Unix/Process.inc
Chris Lattner
lattner at cs.uiuc.edu
Fri May 12 11:20:52 PDT 2006
Changes in directory llvm/lib/System/Unix:
Process.inc updated: 1.14 -> 1.15
---
Log message:
Fix accidentally committed patch.
---
Diffs of the changes: (+1 -1)
Process.inc | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/System/Unix/Process.inc
diff -u llvm/lib/System/Unix/Process.inc:1.14 llvm/lib/System/Unix/Process.inc:1.15
--- llvm/lib/System/Unix/Process.inc:1.14 Fri May 12 13:13:11 2006
+++ llvm/lib/System/Unix/Process.inc Fri May 12 13:20:39 2006
@@ -95,7 +95,7 @@
TimeValue& sys_time)
{
elapsed = TimeValue::now();
-#if 0 // defined(HAVE_GETRUSAGE)
+#if defined(HAVE_GETRUSAGE)
struct rusage usage;
::getrusage(RUSAGE_SELF, &usage);
user_time = TimeValue(
More information about the llvm-commits
mailing list