Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
	* sysdeps/generic/ldsodefs.h: Remove attribute_hidden from
	_dl_allocate_tls_init.  Add rtld_hidden_proto.
	* sysdeps/generic/dl-tls.c (_dl_allocate_tls_init): Add
	rtld_hidden_def.
	* elf/Versions (ld) [GLIBC_PRIVATE]: Add _dl_allocate_tls_init.
  • Loading branch information
Ulrich Drepper committed Oct 10, 2002
1 parent d0883b4 commit 209a8ca
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
2002-10-09 Ulrich Drepper <drepper@redhat.com>

* sysdeps/generic/ldsodefs.h: Remove attribute_hidden from
_dl_allocate_tls_init. Add rtld_hidden_proto.
* sysdeps/generic/dl-tls.c (_dl_allocate_tls_init): Add
rtld_hidden_def.
* elf/Versions (ld) [GLIBC_PRIVATE]: Add _dl_allocate_tls_init.

* version.h (VERSION): Bump to 2.3.1.

* Make-dist: Add back one of the tar invocations removed before.
Expand Down
2 changes: 1 addition & 1 deletion elf/Versions
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ld {
_dl_relocate_object; _dl_signal_error; _dl_start_profile; _dl_starting_up;
_dl_unload_cache;
_rtld_global; _dl_tls_symaddr; _dl_allocate_tls; _dl_deallocate_tls;
_dl_get_tls_static_info;
_dl_get_tls_static_info; _dl_allocate_tls_init;
_dl_get_origin;
}
}
1 change: 1 addition & 0 deletions sysdeps/generic/dl-tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ _dl_allocate_tls_init (void *result)

return result;
}
rtld_hidden_def (_dl_allocate_tls_init)

void *
internal_function
Expand Down
4 changes: 2 additions & 2 deletions sysdeps/generic/ldsodefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -742,8 +742,8 @@ extern void _dl_get_tls_static_info (size_t *sizep, size_t *alignp)
only used within rtld.c itself at startup time. */
extern void *_dl_allocate_tls_storage (void)
internal_function attribute_hidden;
extern void *_dl_allocate_tls_init (void *)
internal_function attribute_hidden;
extern void *_dl_allocate_tls_init (void *) internal_function;
rtld_hidden_proto (_dl_allocate_tls_init);

/* Deallocate memory allocated with _dl_allocate_tls. */
extern void _dl_deallocate_tls (void *tcb, bool dealloc_tcb) internal_function;
Expand Down

0 comments on commit 209a8ca

Please sign in to comment.