summaryrefslogtreecommitdiff
path: root/libc/gmon
diff options
context:
space:
mode:
authorjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2006-10-18 15:30:11 +0000
committerjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2006-10-18 15:30:11 +0000
commit0048423cf450ec8a7ab725bc43a0f4a0372c1737 (patch)
tree6992e095eb10e356ba84c291523174a264e87407 /libc/gmon
parentb0c556f461de6418fb565a208c1b290026b4f355 (diff)
Merge changes between r345 and r426 from /fsf/trunk.
git-svn-id: svn://svn.eglibc.org/trunk@427 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'libc/gmon')
-rw-r--r--libc/gmon/mcount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/gmon/mcount.c b/libc/gmon/mcount.c
index 32a5f1ea0..5a4a2499d 100644
--- a/libc/gmon/mcount.c
+++ b/libc/gmon/mcount.c
@@ -69,8 +69,8 @@ _MCOUNT_DECL(frompc, selfpc) /* _mcount; may be static, inline, etc */
* check that we are profiling
* and that we aren't recursively invoked.
*/
- if (atomic_compare_and_exchange_bool_acq (&p->state, GMON_PROF_BUSY,
- GMON_PROF_ON))
+ if (catomic_compare_and_exchange_bool_acq (&p->state, GMON_PROF_BUSY,
+ GMON_PROF_ON))
return;
/*