1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
2003-08-07  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/generic/ldsodefs.h (_rtld_global): Add
	_dl_rtld_lock_recursive and _dl_rtld_unlock_recursive.
	* elf/rtld.c (rtld_lock_default_lock_recursive,
	rtld_lock_default_unlock_recursive): New functions.
	(dl_main): Initialize _dl_rtld_lock_recursive and
	_dl_rtld_unlock_recursive.

2003-08-05  Jakub Jelinek  <jakub@redhat.com>

	* elf/ldconfig.c (main): Append SLIBDIR and LIBDIR to
	config_file directories instead of prepending.
This commit is contained in:
Ulrich Drepper
2003-08-08 07:43:03 +00:00
parent a30fb2df74
commit 334fcf2a65
14 changed files with 128 additions and 24 deletions

View File

@ -46,13 +46,6 @@ __pathconf (const char *file, int name)
case _PC_2_SYMLINKS:
return __statfs_symlinks (__statfs (file, &fsbuf), &fsbuf);
case _PC_PIPE_BUF:
#ifdef PIPE_BUF
return PIPE_BUF;
#else
return __getpagesize ();
#endif
default:
return posix_pathconf (file, name);
}