[llvm-commits] CVS: llvm/lib/System/Unix/SUS/Process.cpp

Misha Brukman brukman at cs.uiuc.edu
Thu Apr 21 15:48:50 PDT 2005



Changes in directory llvm/lib/System/Unix/SUS:

Process.cpp updated: 1.1 -> 1.2
---
Log message:

Remove trailing whitespace


---
Diffs of the changes:  (+5 -5)

 Process.cpp |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)


Index: llvm/lib/System/Unix/SUS/Process.cpp
diff -u llvm/lib/System/Unix/SUS/Process.cpp:1.1 llvm/lib/System/Unix/SUS/Process.cpp:1.2
--- llvm/lib/System/Unix/SUS/Process.cpp:1.1	Fri Sep 10 23:54:06 2004
+++ llvm/lib/System/Unix/SUS/Process.cpp	Thu Apr 21 17:48:39 2005
@@ -1,10 +1,10 @@
 //===- Unix/SUS/Process.cpp - Linux Process Implementation ---- -*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Reid Spencer and is distributed under the 
+// This file was developed by Reid Spencer and is distributed under the
 // University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file provides the Linux specific implementation of the Process class.
@@ -14,14 +14,14 @@
 #include <unistd.h>
 
 //===----------------------------------------------------------------------===//
-//=== WARNING: Implementation here must contain only code specific to the 
+//=== WARNING: Implementation here must contain only code specific to the
 //===          SUS (Single Unix Specification).
 //===----------------------------------------------------------------------===//
 
 namespace llvm {
 using namespace sys;
 
-unsigned 
+unsigned
 Process::GetPageSize() {
   static const long page_size = sysconf(_SC_PAGE_SIZE);
   return static_cast<unsigned>(page_size);






More information about the llvm-commits mailing list