Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* include/sys/resource.h: Use libc_hidden_proto for getpriority,
	setpriority.
	* sysdeps/unix/sysv/linux/getpriority.c: Add libc_hidden_def.
	* sysdeps/unix/sysv/irix4/getpriority.c: Likewise.
	* sysdeps/mach/hurd/setpriority.c: Likewise.
	* sysdeps/mach/hurd/getpriority.c: Likewise.
	* sysdeps/generic/setpriority.c: Likewise.
	* sysdeps/generic/getpriority.c: Likewise.

	* include/mcheck.h: Use libc_hidden_proto for mcheck_check_all.
	* malloc/mcheck.c: Add libc_hidden_def.

	* include/search.h: Use libc_hidden_proto for hcreate_r, hdestroy_r.
	* misc/hsearch_r.c: Add libc_hidden_def.

	* include/fnmatch.h: Use libc_hidden_proto for fnmatch.
	* posix/fnmatch.c: Add libc_hidden_weak.
  • Loading branch information
Roland McGrath committed Aug 4, 2002
1 parent c41f555 commit a14f26e
Show file tree
Hide file tree
Showing 15 changed files with 54 additions and 9 deletions.
18 changes: 18 additions & 0 deletions ChangeLog
@@ -1,5 +1,23 @@
2002-08-03 Roland McGrath <roland@redhat.com>

* include/sys/resource.h: Use libc_hidden_proto for getpriority,
setpriority.
* sysdeps/unix/sysv/linux/getpriority.c: Add libc_hidden_def.
* sysdeps/unix/sysv/irix4/getpriority.c: Likewise.
* sysdeps/mach/hurd/setpriority.c: Likewise.
* sysdeps/mach/hurd/getpriority.c: Likewise.
* sysdeps/generic/setpriority.c: Likewise.
* sysdeps/generic/getpriority.c: Likewise.

* include/mcheck.h: Use libc_hidden_proto for mcheck_check_all.
* malloc/mcheck.c: Add libc_hidden_def.

* include/search.h: Use libc_hidden_proto for hcreate_r, hdestroy_r.
* misc/hsearch_r.c: Add libc_hidden_def.

* include/fnmatch.h: Use libc_hidden_proto for fnmatch.
* posix/fnmatch.c: Add libc_hidden_weak.

* include/unistd.h: Use libc_hidden_proto for _exit, alarm, confstr,
execl, execle, execlp, execvp, getpid, getsid.
* sysdeps/generic/alarm.c: Add libc_hidden_def.
Expand Down
6 changes: 6 additions & 0 deletions include/fnmatch.h
@@ -1 +1,7 @@
#ifndef _FNMATCH_H

#include <posix/fnmatch.h>

libc_hidden_proto (fnmatch)

#endif
1 change: 1 addition & 0 deletions include/mcheck.h
Expand Up @@ -3,5 +3,6 @@
#include <malloc/mcheck.h>

libc_hidden_proto (mcheck)
libc_hidden_proto (mcheck_check_all)

#endif
2 changes: 2 additions & 0 deletions include/search.h
@@ -1,6 +1,8 @@
#ifndef _SEARCH_H
#include <misc/search.h>

libc_hidden_proto (hcreate_r)
libc_hidden_proto (hdestroy_r)
libc_hidden_proto (hsearch_r)
libc_hidden_proto (lfind)

Expand Down
3 changes: 3 additions & 0 deletions include/sys/resource.h
@@ -1,6 +1,9 @@
#ifndef _SYS_RESOURCE_H
#include <resource/sys/resource.h>

libc_hidden_proto (getpriority)
libc_hidden_proto (setpriority)

/* Now define the internal interfaces. */
extern int __getrlimit (enum __rlimit_resource __resource,
struct rlimit *__rlimits);
Expand Down
11 changes: 7 additions & 4 deletions linuxthreads/ChangeLog
@@ -1,9 +1,12 @@
2002-08-03 Ulrich Drepper <drepper@redhat.com>

* sysdeps/pthread/bits/libc-tsd.h: Add _LIBC_TSD_KEY_LOCALE.

2002-08-02 Roland McGrath <roland@redhat.com>

* sysdeps/pthread/bits/libc-tsd.h (enum __libc_tsd_key_t):
Add _LIBC_TSD_KEY_LOCALE.
* manager.c (pthread_start_thread) [!(USE_TLS && HAVE___THREAD)]:
Call __uselocale to initialize our per-thread locale pointer to
the global one.
* pthread.c (__pthread_initialize_minimal): Likewise.

* sysdeps/i386/tls.h (TLS_DO_SET_THREAD_AREA): Add missing \s.

2002-08-02 Ulrich Drepper <drepper@redhat.com>
Expand Down
3 changes: 3 additions & 0 deletions malloc/mcheck.c
Expand Up @@ -133,6 +133,9 @@ mcheck_check_all ()
/* Turn checks on again. */
pedantic = 1;
}
#ifdef _LIBC
libc_hidden_def (mcheck_check_all)
#endif

static void unlink_blk __P ((struct hdr *ptr));
static void
Expand Down
2 changes: 2 additions & 0 deletions misc/hsearch_r.c
Expand Up @@ -94,6 +94,7 @@ hcreate_r (nel, htab)
/* everything went alright */
return 1;
}
libc_hidden_def (hcreate_r)


/* After using the hash table it has to be destroyed. The used memory can
Expand All @@ -116,6 +117,7 @@ hdestroy_r (htab)
/* the sign for an existing table is an value != NULL in htable */
htab->table = NULL;
}
libc_hidden_def (hdestroy_r)


/* This is the search function. It uses double hashing with open addressing.
Expand Down
3 changes: 2 additions & 1 deletion posix/fnmatch.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1991-1993,1996-1999,2000,2001 Free Software Foundation, Inc.
/* Copyright (C) 1991-93,96-99,2000,01,02 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
Expand Down Expand Up @@ -369,6 +369,7 @@ versioned_symbol (libc, __fnmatch, fnmatch, GLIBC_2_2_3);
strong_alias (__fnmatch, __fnmatch_old)
compat_symbol (libc, __fnmatch_old, fnmatch, GLIBC_2_0);
# endif
libc_hidden_ver (__fnmatch, fnmatch)
# endif

#endif /* _LIBC or not __GNU_LIBRARY__. */
3 changes: 2 additions & 1 deletion sysdeps/generic/getpriority.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
/* Copyright (C) 1991,95,96,97,2000,02 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
Expand Down Expand Up @@ -31,6 +31,7 @@ getpriority (which, who)
__set_errno (ENOSYS);
return -1;
}
libc_hidden_def (getpriority)

stub_warning (getpriority)
#include <stub-tag.h>
3 changes: 2 additions & 1 deletion sysdeps/generic/setpriority.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
/* Copyright (C) 1991,95,96,97,2000,02 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
Expand Down Expand Up @@ -30,6 +30,7 @@ setpriority (which, who, prio)
__set_errno (ENOSYS);
return -1;
}
libc_hidden_def (setpriority)

stub_warning (setpriority)
#include <stub-tag.h>
1 change: 1 addition & 0 deletions sysdeps/mach/hurd/getpriority.c
Expand Up @@ -82,3 +82,4 @@ getpriority (enum __priority_which which, id_t who)

return MACH_PRIORITY_TO_NICE (maxpri);
}
libc_hidden_def (getpriority)
1 change: 1 addition & 0 deletions sysdeps/mach/hurd/setpriority.c
Expand Up @@ -95,3 +95,4 @@ setpriority (enum __priority_which which, id_t who, int prio)

return err ? __hurd_fail (err) : 0;
}
libc_hidden_def (setpriority)
3 changes: 2 additions & 1 deletion sysdeps/unix/sysv/irix4/getpriority.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1994, 1996, 1997, 2000 Free Software Foundation, Inc.
/* Copyright (C) 1994,96,97,2000,02 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
Expand Down Expand Up @@ -44,3 +44,4 @@ getpriority (which, who)
__set_errno (EINVAL);
return -1;
}
libc_hidden_def (getpriority)
3 changes: 2 additions & 1 deletion sysdeps/unix/sysv/linux/getpriority.c
@@ -1,5 +1,5 @@
/* getpriority for Linux.
Copyright (C) 1996, 1998, 2000 Free Software Foundation, Inc.
Copyright (C) 1996,98,2000,02 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
Expand Down Expand Up @@ -44,3 +44,4 @@ getpriority (enum __priority_which which, id_t who)
res = PZERO - res;
return res;
}
libc_hidden_def (getpriority)

0 comments on commit a14f26e

Please sign in to comment.