This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMITTED] Fixed coding style


hi,

I just pushed a trivial fix to the coding style in bench-skeleton.c as
obvious.

Siddhesh

commit 5c637fe5eee1d4fe42d9ef094b0b021fb56d3bab
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
Date:   Fri May 10 17:44:27 2013 +0530

    Fix coding style

diff --git a/ChangeLog b/ChangeLog
index fb18690..e2945b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
+
+	* benchtests/bench-skeleton.c (startup): Fix coding style.
+
 2013-05-10  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #6809]
diff --git a/benchtests/bench-skeleton.c b/benchtests/bench-skeleton.c
index a13ad02..404900b 100644
--- a/benchtests/bench-skeleton.c
+++ b/benchtests/bench-skeleton.c
@@ -23,7 +23,9 @@
 #include <inttypes.h>
 
 volatile unsigned int dontoptimize = 0;
-void startup ()
+
+void
+startup (void)
 {
   /* This loop should cause CPU to switch to maximal freqency.
      This makes subsequent measurement more accurate.  We need a side effect
@@ -31,9 +33,7 @@ void startup ()
      This should be enough to cause CPU to speed up and it is simpler than
      running loop for constant time. This is used when user does not have root
      access to set a constant freqency.  */
-
-  int k;
-  for (k = 0; k < 10000000; k++)
+  for (int k = 0; k < 10000000; k++)
     dontoptimize += 23 * dontoptimize + 2;
 }
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]