diff options
author | Pedro Alves <pedro@palves.net> | 2023-09-15 19:55:54 +0100 |
---|---|---|
committer | Pedro Alves <pedro@palves.net> | 2023-09-27 15:28:39 +0100 |
commit | ed11fb37b3f3de0f9cf056c9fce76dc7a3cc359d (patch) | |
tree | 8e77118013489686b59d5abe229f8459671ac729 | |
parent | 3c3aa8bfc21de6e3f03c09c3dbc28fdd252af74a (diff) | |
download | binutils-ed11fb37b3f3de0f9cf056c9fce76dc7a3cc359d.zip binutils-ed11fb37b3f3de0f9cf056c9fce76dc7a3cc359d.tar.gz binutils-ed11fb37b3f3de0f9cf056c9fce76dc7a3cc359d.tar.bz2 |
Fix gdb.threads/pthreads.c formatting
Just some GNU formatting fixes throughout.
Approved-By: Tom Tromey <tom@tromey.com>
Change-Id: Ie851e3815b839e57898263896db0ba8ddfefe09e
-rw-r--r-- | gdb/testsuite/gdb.threads/pthreads.c | 45 |
1 files changed, 27 insertions, 18 deletions
diff --git a/gdb/testsuite/gdb.threads/pthreads.c b/gdb/testsuite/gdb.threads/pthreads.c index 7ec5604..e1593e9 100644 --- a/gdb/testsuite/gdb.threads/pthreads.c +++ b/gdb/testsuite/gdb.threads/pthreads.c @@ -35,7 +35,8 @@ common_routine (int arg) static int hits; static int full_coverage; - if (verbose) printf("common_routine (%d)\n", arg); + if (verbose) + printf ("common_routine (%d)\n", arg); hits++; switch (arg) { @@ -59,13 +60,15 @@ thread1 (void *arg) int i; int z = 0; - if (verbose) printf ("thread1 (%0lx) ; pid = %d\n", (long) arg, getpid ()); - for (i=1; i <= 10000000; i++) + if (verbose) + printf ("thread1 (%0lx) ; pid = %d\n", (long) arg, getpid ()); + for (i = 1; i <= 10000000; i++) { - if (verbose) printf("thread1 %ld\n", (long) pthread_self ()); + if (verbose) + printf ("thread1 %ld\n", (long) pthread_self ()); z += i; common_routine (1); - sleep(1); + sleep (1); } return (void *) 0; } @@ -76,15 +79,17 @@ thread2 (void * arg) int i; int k = 0; - if (verbose) printf ("thread2 (%0lx) ; pid = %d\n", (long) arg, getpid ()); - for (i=1; i <= 10000000; i++) + if (verbose) + printf ("thread2 (%0lx) ; pid = %d\n", (long) arg, getpid ()); + for (i = 1; i <= 10000000; i++) { - if (verbose) printf("thread2 %ld\n", (long) pthread_self ()); + if (verbose) + printf ("thread2 %ld\n", (long) pthread_self ()); k += i; common_routine (2); - sleep(1); + sleep (1); } - sleep(100); + sleep (100); return (void *) 0; } @@ -93,7 +98,8 @@ foo (int a, int b, int c) { int d, e, f; - if (verbose) printf("a=%d\n", a); + if (verbose) + printf ("a=%d\n", a); } int @@ -105,7 +111,8 @@ main (int argc, char **argv) void (*xxx) (); pthread_attr_t attr; - if (verbose) printf ("pid = %d\n", getpid()); + if (verbose) + printf ("pid = %d\n", getpid ()); foo (1, 2, 3); @@ -128,7 +135,8 @@ main (int argc, char **argv) perror ("pthread_create 1"); exit (1); } - if (verbose) printf ("Made thread %ld\n", (long) tid1); + if (verbose) + printf ("Made thread %ld\n", (long) tid1); sleep (1); if (pthread_create (&tid2, NULL, thread2, (void *) 0xdeadbeef)) @@ -136,18 +144,19 @@ main (int argc, char **argv) perror ("pthread_create 2"); exit (1); } - if (verbose) printf("Made thread %ld\n", (long) tid2); + if (verbose) + printf ("Made thread %ld\n", (long) tid2); sleep (1); for (j = 1; j <= 10000000; j++) { - if (verbose) printf("top %ld\n", (long) pthread_self ()); + if (verbose) + printf ("top %ld\n", (long) pthread_self ()); common_routine (0); - sleep(1); + sleep (1); t += j; } - exit(0); + exit (0); } - |