summaryrefslogtreecommitdiff
path: root/lib/libpthread/uthread/uthread_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libpthread/uthread/uthread_file.c')
-rw-r--r--lib/libpthread/uthread/uthread_file.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libpthread/uthread/uthread_file.c b/lib/libpthread/uthread/uthread_file.c
index 71c0ffc35aa..41f62ee7357 100644
--- a/lib/libpthread/uthread/uthread_file.c
+++ b/lib/libpthread/uthread/uthread_file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uthread_file.c,v 1.11 2004/06/07 21:11:23 marc Exp $ */
+/* $OpenBSD: uthread_file.c,v 1.12 2005/10/14 06:53:01 otto Exp $ */
/*
* Copyright (c) 1995 John Birrell <jb@cimlogic.com.au>.
* All rights reserved.
@@ -110,7 +110,7 @@ find_lock(int idx, FILE *fp)
p = &flh[idx].fl;
else {
/* Point to the first dynamic lock: */
- p = flh[idx].head.lh_first;
+ p = LIST_FIRST(&flh[idx].head);
/*
* Loop through the dynamic locks looking for the
@@ -118,7 +118,7 @@ find_lock(int idx, FILE *fp)
*/
while (p != NULL && (p->fp != fp || p->owner == NULL))
/* Not this file, try the next: */
- p = p->entry.le_next;
+ p = LIST_NEXT(p, entry);
}
return(p);
}
@@ -140,7 +140,7 @@ do_lock(int idx, FILE *fp)
}
else {
/* Point to the first dynamic lock: */
- p = flh[idx].head.lh_first;
+ p = LIST_FIRST(&flh[idx].head);
/*
* Loop through the dynamic locks looking for a
@@ -148,7 +148,7 @@ do_lock(int idx, FILE *fp)
*/
while (p != NULL && p->owner != NULL)
/* This one is used, try the next: */
- p = p->entry.le_next;
+ p = LIST_NEXT(p, entry);
}
/*