aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorJake Burkholder <jake@FreeBSD.org>2000-05-23 20:41:01 +0000
committerJake Burkholder <jake@FreeBSD.org>2000-05-23 20:41:01 +0000
commit740a1973a62eaa8e1dc23e22f84dacb3346d303a (patch)
treeacf054a865eef37380f5ac3d3c07766b5bb234b0 /gnu
parentb4183771fd8ab7a5946fd38df04c1e24b1268bea (diff)
downloadsrc-740a1973a62eaa8e1dc23e22f84dacb3346d303a.tar.gz
src-740a1973a62eaa8e1dc23e22f84dacb3346d303a.zip
Change the way that the queue(3) structures are declared; don't assume that
the type argument to *_HEAD and *_ENTRY is a struct. Suggested by: phk Reviewed by: phk Approved by: mdodd
Notes
Notes: svn path=/head/; revision=60833
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/binutils/gdb/freebsd-uthread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/binutils/gdb/freebsd-uthread.c b/gnu/usr.bin/binutils/gdb/freebsd-uthread.c
index 80e65fe18173..2dbe3d476e01 100644
--- a/gnu/usr.bin/binutils/gdb/freebsd-uthread.c
+++ b/gnu/usr.bin/binutils/gdb/freebsd-uthread.c
@@ -130,10 +130,10 @@ static CORE_ADDR cached_pthread_addr;
#define THREADID_TID(id) ((id) >> 17)
#define THREADID_PID(id) ((id) & ((1 << 17) - 1))
-LIST_HEAD(idmaplist, idmap);
+LIST_HEAD(idmaplist, struct idmap);
struct idmap {
- LIST_ENTRY(idmap) link;
+ LIST_ENTRY(struct idmap) link;
u_int64_t uniqueid;
int tid;
};