summaryrefslogtreecommitdiffstats
path: root/linux-user
diff options
context:
space:
mode:
authorEmilio G. Cota <cota@braap.org>2015-04-27 12:45:33 -0400
committerMichael Tokarev <mjt@tls.msk.ru>2015-04-30 16:05:49 +0300
commit52a53afebd2604af957d50fd4f3ce2012350a40d (patch)
tree1d9b2f694978211aef3104715fad435d9f8cd39e /linux-user
parentb1201addc7ceb8f1fcdc378071ec6f5ab5b3f7ab (diff)
downloadhqemu-52a53afebd2604af957d50fd4f3ce2012350a40d.zip
hqemu-52a53afebd2604af957d50fd4f3ce2012350a40d.tar.gz
linux-user/elfload: use QTAILQ_FOREACH instead of open-coding it
Signed-off-by: Emilio G. Cota <cota@braap.org> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/elfload.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/linux-user/elfload.c b/linux-user/elfload.c
index 399c021..0ba9706 100644
--- a/linux-user/elfload.c
+++ b/linux-user/elfload.c
@@ -2887,8 +2887,7 @@ static int write_note_info(struct elf_note_info *info, int fd)
return (error);
/* write prstatus for each thread */
- for (ets = info->thread_list.tqh_first; ets != NULL;
- ets = ets->ets_link.tqe_next) {
+ QTAILQ_FOREACH(ets, &info->thread_list, ets_link) {
if ((error = write_note(&ets->notes[0], fd)) != 0)
return (error);
}
OpenPOWER on IntegriCloud