From 227d442d018978e07cf55dec5f235c5e3bc196b5 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 12 May 2006 18:20:39 +0000 Subject: Fix accidentally committed patch. llvm-svn: 28260 --- llvm/lib/System/Unix/Process.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/System/Unix/Process.inc') diff --git a/llvm/lib/System/Unix/Process.inc b/llvm/lib/System/Unix/Process.inc index f4bc873a829..32733d61366 100644 --- a/llvm/lib/System/Unix/Process.inc +++ b/llvm/lib/System/Unix/Process.inc @@ -95,7 +95,7 @@ Process::GetTimeUsage(TimeValue& elapsed, TimeValue& user_time, 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( -- cgit v1.2.3