summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormostang.com!davidm <mostang.com!davidm>2004-04-01 06:27:06 +0000
committermostang.com!davidm <mostang.com!davidm>2004-04-01 06:27:06 +0000
commit471e4e5fa698a9eeaef184d9acea32ad9aac2fe9 (patch)
treeb20c3b7243df9b37756d83f87d768b46e4f0a95d
parentb15a2bd5ef4601dcaab46f4b52d67942ed896f0d (diff)
downloadlibunwind-471e4e5fa698a9eeaef184d9acea32ad9aac2fe9.tar.gz
Minor whitespace fixes.
(Logical change 1.202)
-rw-r--r--tests/Gtest-concurrent.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/Gtest-concurrent.c b/tests/Gtest-concurrent.c
index 3378decd..638ad342 100644
--- a/tests/Gtest-concurrent.c
+++ b/tests/Gtest-concurrent.c
@@ -1,5 +1,5 @@
/* libunwind - a platform-independent unwind library
- Copyright (C) 2003 Hewlett-Packard Co
+ Copyright (C) 2003-2004 Hewlett-Packard Co
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
Permission is hereby granted, free of charge, to any person obtaining
@@ -52,15 +52,15 @@ handler (int sig)
unw_cursor_t c;
int ret;
- unw_getcontext(&uc);
- unw_init_local(&c, &uc);
+ unw_getcontext (&uc);
+ unw_init_local (&c, &uc);
do
{
- unw_get_reg(&c, UNW_REG_IP, &ip);
+ unw_get_reg (&c, UNW_REG_IP, &ip);
if (verbose)
printf ("%lx: IP=%lx\n", (long) pthread_self (), (unsigned long) ip);
}
- while ((ret = unw_step(&c)) > 0);
+ while ((ret = unw_step (&c)) > 0);
if (ret < 0)
panic ("unw_step() returned %d\n", ret);