[PATCH] IA-64 warning fix
Jakub Jelinek
jakub@redhat.com
Fri Jan 17 17:25:00 GMT 2003
Hi!
_dl_static_lock is declared with __libc_lock_define_initialized_recursive:
2003-01-17 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/ia64/dl-static.c (_dl_static_init): Use
__libc_lock_{,un}lock_recursive instead of __libc_lock_{,un}lock
on _dl_static_lock.
--- libc/sysdeps/unix/sysv/linux/ia64/dl-static.c.jj 2002-02-01 11:01:19.000000000 +0100
+++ libc/sysdeps/unix/sysv/linux/ia64/dl-static.c 2003-01-17 12:47:49.000000000 +0100
@@ -1,5 +1,5 @@
/* Variable initialization. IA-64 version.
- Copyright (C) 2001, 2002 Free Software Foundation, Inc.
+ Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -53,7 +53,7 @@ _dl_static_init (struct link_map *map)
lookup_t loadbase;
void (*f) (void *[]);
- __libc_lock_lock (_dl_static_lock);
+ __libc_lock_lock_recursive (_dl_static_lock);
loadbase = _dl_lookup_symbol ("_dl_var_init", map, &ref,
map->l_local_scope, 0, 1);
@@ -63,7 +63,7 @@ _dl_static_init (struct link_map *map)
f (variables);
}
- __libc_lock_unlock (_dl_static_lock);
+ __libc_lock_unlock_recursive (_dl_static_lock);
}
#endif
Jakub
More information about the Libc-hacker
mailing list