Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* 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.
	* sysdeps/unix/alarm.c: Likewise.
	* posix/confstr.c: Likewise.
	* posix/execvp.c: Likewise.
	* posix/execlp.c: Likewise.
	* posix/execle.c: Likewise.
	* posix/execl.c: Likewise.
	* sysdeps/generic/getsid.c: Likewise.
	* sysdeps/mach/hurd/getsid.c: Likewise.
	* sysdeps/generic/getpid.c: Add libc_hidden_weak.
	* sysdeps/mach/hurd/getpid.c: Likewise.

	* include/stdlib.h: Use libc_hidden_proto for ecvt_r, fcvt_r,
	qecvt_r, qfcvt_r, lrand48_r.
	* misc/efgcvt_r.c: Add libc_hidden_def.

	* include/wordexp.h: Use libc_hidden_proto for wordfree.
	* sysdeps/generic/wordexp.c: Add libc_hidden_def.

	* include/langinfo.h: Use libc_hidden_proto for nl_langinfo.
	* locale/nl_langinfo.c: Add libc_hidden_def.

	* include/glob.h: Use libc_hidden_proto for glob, globfree, globfree64.
	* sysdeps/generic/glob.c: Add libc_hidden_def.
	* sysdeps/generic/glob64.c: Likewise.
	* sysdeps/wordsize-64/glob.c (globfree64): Add libc_hidden_weak.
  • Loading branch information
Roland McGrath committed Aug 4, 2002
1 parent 5517266 commit c41f555
Show file tree
Hide file tree
Showing 23 changed files with 97 additions and 12 deletions.
29 changes: 29 additions & 0 deletions ChangeLog
@@ -1,5 +1,34 @@
2002-08-03 Roland McGrath <roland@redhat.com>

* 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.
* sysdeps/unix/alarm.c: Likewise.
* posix/confstr.c: Likewise.
* posix/execvp.c: Likewise.
* posix/execlp.c: Likewise.
* posix/execle.c: Likewise.
* posix/execl.c: Likewise.
* sysdeps/generic/getsid.c: Likewise.
* sysdeps/mach/hurd/getsid.c: Likewise.
* sysdeps/generic/getpid.c: Add libc_hidden_weak.
* sysdeps/mach/hurd/getpid.c: Likewise.

* include/stdlib.h: Use libc_hidden_proto for ecvt_r, fcvt_r,
qecvt_r, qfcvt_r, lrand48_r.
* misc/efgcvt_r.c: Add libc_hidden_def.

* include/wordexp.h: Use libc_hidden_proto for wordfree.
* sysdeps/generic/wordexp.c: Add libc_hidden_def.

* include/langinfo.h: Use libc_hidden_proto for nl_langinfo.
* locale/nl_langinfo.c: Add libc_hidden_def.

* include/glob.h: Use libc_hidden_proto for glob, globfree, globfree64.
* sysdeps/generic/glob.c: Add libc_hidden_def.
* sysdeps/generic/glob64.c: Likewise.
* sysdeps/wordsize-64/glob.c (globfree64): Add libc_hidden_weak.

* locale/nl_langinfo.c: Use _NL_CURRENT_DATA.

* elf/Makefile (CFLAGS-vismod2.c): New variable.
Expand Down
4 changes: 4 additions & 0 deletions include/glob.h
@@ -1,6 +1,10 @@
#ifndef _GLOB_H
#include <posix/glob.h>

libc_hidden_proto (glob)
libc_hidden_proto (globfree)
libc_hidden_proto (globfree64)

/* Now define the internal interfaces. */
extern int __glob_pattern_p (__const char *__pattern, int __quote);
extern int __glob64 (__const char *__pattern, int __flags,
Expand Down
6 changes: 6 additions & 0 deletions include/langinfo.h
@@ -1 +1,7 @@
#ifndef _LANGINFO_H

#include <locale/langinfo.h>

libc_hidden_proto (nl_langinfo)

#endif
5 changes: 5 additions & 0 deletions include/stdlib.h
Expand Up @@ -14,6 +14,11 @@ libc_hidden_proto (abort)
libc_hidden_proto (getenv)
libc_hidden_proto (bsearch)
libc_hidden_proto (qsort)
libc_hidden_proto (ecvt_r)
libc_hidden_proto (fcvt_r)
libc_hidden_proto (qecvt_r)
libc_hidden_proto (qfcvt_r)
libc_hidden_proto (lrand48_r)
libc_hidden_proto (__secure_getenv)
libc_hidden_proto (__strtof_internal)
libc_hidden_proto (__strtod_internal)
Expand Down
11 changes: 11 additions & 0 deletions include/unistd.h
@@ -1,6 +1,17 @@
#ifndef _UNISTD_H
# include <posix/unistd.h>

libc_hidden_proto (_exit)
libc_hidden_proto (alarm)
libc_hidden_proto (confstr)
libc_hidden_proto (execl)
libc_hidden_proto (execle)
libc_hidden_proto (execlp)
libc_hidden_proto (execvp)
libc_hidden_proto (getpid)
libc_hidden_proto (getsid)


/* Now define the internal interfaces. */
extern int __access (__const char *__name, int __type);
extern int __euidaccess (__const char *__name, int __type);
Expand Down
6 changes: 6 additions & 0 deletions include/wordexp.h
@@ -1 +1,7 @@
#ifndef _WORDEXP_H

#include <posix/wordexp.h>

libc_hidden_proto (wordfree)

#endif
3 changes: 3 additions & 0 deletions locale/nl_langinfo.c
Expand Up @@ -58,3 +58,6 @@ nl_langinfo (item)
/* Return the string for the specified item. */
return (char *) data->values[index].string;
}
#ifndef USE_IN_EXTENDED_LOCALE_MODEL
libc_hidden_def (nl_langinfo)
#endif
4 changes: 3 additions & 1 deletion misc/efgcvt_r.c
@@ -1,5 +1,5 @@
/* Compatibility functions for floating point formatting, reentrant versions.
Copyright (C) 1995,1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc.
Copyright (C) 1995,96,97,98,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 @@ -151,6 +151,7 @@ APPEND (FUNC_PREFIX, fcvt_r) (value, ndigit, decpt, sign, buf, len)

return 0;
}
libc_hidden_def (APPEND (FUNC_PREFIX, fcvt_r))

int
APPEND (FUNC_PREFIX, ecvt_r) (value, ndigit, decpt, sign, buf, len)
Expand Down Expand Up @@ -212,3 +213,4 @@ APPEND (FUNC_PREFIX, ecvt_r) (value, ndigit, decpt, sign, buf, len)
*decpt += exponent;
return 0;
}
libc_hidden_def (APPEND (FUNC_PREFIX, ecvt_r))
3 changes: 2 additions & 1 deletion posix/confstr.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
/* Copyright (C) 1991,96,97,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 @@ -157,3 +157,4 @@ confstr (name, buf, len)
}
return string_len;
}
libc_hidden_def (confstr)
3 changes: 2 additions & 1 deletion posix/execl.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 92, 94, 97, 98, 99 Free Software Foundation, Inc.
/* Copyright (C) 1991,92,94,97,98,99,2002 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 @@ -75,3 +75,4 @@ execl (const char *path, const char *arg, ...)

return __execve (path, (char *const *) argv, __environ);
}
libc_hidden_def (execl)
3 changes: 2 additions & 1 deletion posix/execle.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1997, 1998, 1999 Free Software Foundation, Inc.
/* Copyright (C) 1991,97,98,99,2002 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 @@ -73,3 +73,4 @@ execle (const char *path, const char *arg, ...)

return __execve (path, (char *const *) argv, (char *const *) envp);
}
libc_hidden_def (execle)
3 changes: 2 additions & 1 deletion posix/execlp.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 93, 96, 97, 98, 99 Free Software Foundation, Inc.
/* Copyright (C) 1991,93,96,97,98,99,2002 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 @@ -72,3 +72,4 @@ execlp (const char *file, const char *arg, ...)

return execvp (file, (char *const *) argv);
}
libc_hidden_def (execlp)
3 changes: 2 additions & 1 deletion posix/execvp.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 92, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
/* Copyright (C) 1991,92,95,96,97,98,99,2002 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 @@ -156,3 +156,4 @@ execvp (file, argv)
/* Return the error from the last attempt (probably ENOENT). */
return -1;
}
libc_hidden_def (execvp)
4 changes: 2 additions & 2 deletions sysdeps/generic/alarm.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
/* Copyright (C) 1991,95,96,97,2002 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 @@ -33,7 +33,7 @@ alarm (seconds)
__set_errno (ENOSYS);
return 0;
}

libc_hidden_def (alarm)

stub_warning (alarm)
#include <stub-tag.h>
1 change: 1 addition & 0 deletions sysdeps/generic/getpid.c
Expand Up @@ -30,4 +30,5 @@ libc_hidden_def (__getpid)
stub_warning (getpid)

weak_alias (__getpid, getpid)
libc_hidden_weak (getpid)
#include <stub-tag.h>
3 changes: 2 additions & 1 deletion sysdeps/generic/getsid.c
@@ -1,5 +1,5 @@
/* getsid -- Return session ID of a process. Stub version.
Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
Copyright (C) 1995,96,97,2002 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 @@ -27,5 +27,6 @@ getsid (pid_t pid)
__set_errno (ENOSYS);
return (pid_t) -1;
}
libc_hidden_def (getsid)
stub_warning (getsid)
#include <stub-tag.h>
6 changes: 6 additions & 0 deletions sysdeps/generic/glob.c
Expand Up @@ -1064,6 +1064,9 @@ glob (pattern, flags, errfunc, pglob)

return 0;
}
#ifdef _LIBC
libc_hidden_def (glob)
#endif


#if !defined _LIBC || !defined GLOB_ONLY_P
Expand All @@ -1082,6 +1085,9 @@ globfree (pglob)
free ((__ptr_t) pglob->gl_pathv);
}
}
#ifdef _LIBC
libc_hidden_def (globfree)
#endif


/* Do a collated comparison of A and B. */
Expand Down
3 changes: 2 additions & 1 deletion sysdeps/generic/glob64.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
/* Copyright (C) 1998,99,2002 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 @@ -47,6 +47,7 @@ void
globfree64 (glob64_t *pglob)
{
}
libc_hidden_def (globfree64);

stub_warning (glob64)
#include <stub-tag.h>
1 change: 1 addition & 0 deletions sysdeps/generic/wordexp.c
Expand Up @@ -2216,6 +2216,7 @@ wordfree (wordexp_t *pwordexp)
pwordexp->we_wordv = NULL;
}
}
libc_hidden_def (wordfree)

/*
* wordexp()
Expand Down
1 change: 1 addition & 0 deletions sysdeps/mach/hurd/getpid.c
Expand Up @@ -29,3 +29,4 @@ __getpid ()
}
libc_hidden_def (__getpid)
weak_alias (__getpid, getpid)
libc_hidden_weak (getpid)
3 changes: 2 additions & 1 deletion sysdeps/mach/hurd/getsid.c
@@ -1,5 +1,5 @@
/* getsid -- Return session ID of a process. Hurd version.
Copyright (C) 1995, 1997 Free Software Foundation, Inc.
Copyright (C) 1995,97,2002 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 @@ -33,3 +33,4 @@ getsid (pid_t pid)
return (pid_t) __hurd_fail (err);
return sid;
}
libc_hidden_def (getsid)
3 changes: 2 additions & 1 deletion sysdeps/unix/alarm.c
@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1992, 1994, 1997 Free Software Foundation, Inc.
/* Copyright (C) 1991,92,94,97,2002 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 @@ -45,3 +45,4 @@ alarm (seconds)
++retval;
return retval;
}
libc_hidden_def (alarm)
1 change: 1 addition & 0 deletions sysdeps/wordsize-64/glob.c
Expand Up @@ -5,3 +5,4 @@
#undef globfree64
weak_alias (glob, glob64)
weak_alias (globfree, globfree64)
libc_hidden_weak (globfree64)

0 comments on commit c41f555

Please sign in to comment.