mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
fdacb17d48
1998-06-29 12:27 Ulrich Drepper <drepper@cygnus.com> * argp/argp.h: Use __PMT instead of __P for function pointer. * iconv/gconv.h: Likewise. * io/fts.h: Likewise. * io/ftw.h: Likewise. * libio/libio.h: Likewise. * malloc/mcheck.h: Likewise. * misc/search.h: Likewise. * posix/glob.h: Likewise. * resolv/resolv.h: Likewise. * signal/signal.h: Likewise. * stdlib/stdlib.h: Likewise. * sysdeps/unix/sysv/linux/bits/sigaction.h: Likewise. * sysdeps/unix/sysv/linux/bits/siginfo.h: Likewise. 1998-06-26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * Makeconfig (CPPFLAGS): Use $($(subdir)-CPPFLAGS) only once. 1998-06-27 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * posix/wordexp.c (parse_param): Fix memory leak. 1998-06-27 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * libc.map: Export _IO_ftrylockfile. 1998-06-27 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/unix/sysv/linux/aio_sigqueue.c: Use get[pu]id instead of __get[pu]id. 1998-06-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/dl-misc.c (_dl_debug_message): Don't cache the pid. * elf/dl-runtime.c (_dl_object_relocation_scope): Avoid adding the same search list twice. 1998-06-29 Andreas Jaeger <aj@arthur.rhein-neckar.de> * login/programs/utmpd.c (handle_requests): Set and use maximal fd used to optimize loop/select. 1998-06-24 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/generic/init-first.c: Don't define __libc_pid. * sysdeps/unix/sysv/linux/init-first.c: Likewise. * sysdeps/mach/hurd/i386/init-first.c: Likewise. * sysdeps/mach/hurd/mips/init-first.c: Likewise. * sysdeps/arm/init-first.c: Likewise. * posix/getopt_init.c: Don't use __libc_pid. * sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise. * sysdeps/unix/sysv/linux/sigqueue.c: Likewise. * libc.map: Remove __libc_uid and __libc_pid.
72 lines
2.6 KiB
C
72 lines
2.6 KiB
C
/* Perform additional initialization for getopt functions in GNU libc.
|
|
Copyright (C) 1997, 1998 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
/* Attention: this file is *not* necessary when the GNU getopt functions
|
|
are used outside the GNU libc. Some additional functionality of the
|
|
getopt functions in GNU libc require this additional work. */
|
|
|
|
#include <getopt.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
|
|
#include <stdio-common/_itoa.h>
|
|
|
|
/* Variable to synchronize work. */
|
|
char *__getopt_nonoption_flags;
|
|
|
|
|
|
/* Remove the environment variable "_<PID>_GNU_nonoption_argv_flags_" if
|
|
it is still available. If the getopt functions are also used in the
|
|
application it does not exist anymore since it was saved for the use
|
|
in getopt. */
|
|
void
|
|
__getopt_clean_environment (char **env)
|
|
{
|
|
/* Bash 2.0 puts a special variable in the environment for each
|
|
command it runs, specifying which ARGV elements are the results
|
|
of file name wildcard expansion and therefore should not be
|
|
considered as options. */
|
|
static const char envvar_tail[] = "_GNU_nonoption_argv_flags_=";
|
|
char var[100];
|
|
char *cp, **ep;
|
|
size_t len;
|
|
|
|
/* Construct the "_<PID>_GNU_nonoption_argv_flags_=" string. We must
|
|
not use `sprintf'. */
|
|
cp = memcpy (&var[sizeof (var) - sizeof (envvar_tail)], envvar_tail,
|
|
sizeof (envvar_tail));
|
|
cp = _itoa_word (__getpid (), cp, 10, 0);
|
|
*--cp = '_';
|
|
len = (var + sizeof (var) - 1) - cp;
|
|
|
|
for (ep = env; *ep != NULL; ++ep)
|
|
if (!strncmp (*ep, cp, len))
|
|
{
|
|
/* Found it. Store this pointer and move later ones back. */
|
|
char **dp = ep;
|
|
__getopt_nonoption_flags = &(*ep)[len];
|
|
do
|
|
dp[0] = dp[1];
|
|
while (*dp++);
|
|
/* Continue the loop in case the name appears again. */
|
|
}
|
|
}
|