summaryrefslogtreecommitdiffstats
path: root/libelf/gelf_getsyminfo.c
diff options
context:
space:
mode:
authorRoland McGrath <[email protected]>2008-08-25 22:55:17 +0000
committerRoland McGrath <[email protected]>2008-08-25 22:55:17 +0000
commitb4d6f0f8064f2b706ea9035ef0393d8299671390 (patch)
tree58d3da51253302bc5b8f2198d8462942ff43f464 /libelf/gelf_getsyminfo.c
parentf729d77881262094d365d33ac51063e25a02e357 (diff)
Fix up bogon and missing log entries from .pmachata.threads branch.
Diffstat (limited to 'libelf/gelf_getsyminfo.c')
-rw-r--r--libelf/gelf_getsyminfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libelf/gelf_getsyminfo.c b/libelf/gelf_getsyminfo.c
index c5a312c4..2c07526a 100644
--- a/libelf/gelf_getsyminfo.c
+++ b/libelf/gelf_getsyminfo.c
@@ -80,7 +80,7 @@ gelf_getsyminfo (data, ndx, dst)
assert (sizeof (GElf_Syminfo) == sizeof (Elf32_Syminfo));
assert (sizeof (GElf_Syminfo) == sizeof (Elf64_Syminfo));
- RWLOCK_RDLOCK (((Elf_Data_Scn *) data)->s->elf->lock);
+ rwlock_rdlock (((Elf_Data_Scn *) data)->s->elf->lock);
/* The data is already in the correct form. Just make sure the
index is OK. */
@@ -95,7 +95,7 @@ gelf_getsyminfo (data, ndx, dst)
result = dst;
out:
- RWLOCK_UNLOCK (((Elf_Data_Scn *) data)->s->elf->lock);
+ rwlock_unlock (((Elf_Data_Scn *) data)->s->elf->lock);
return result;
}