diff options
author | Patrick Palka <patrick@parcs.ath.cx> | 2015-07-25 15:41:05 -0400 |
---|---|---|
committer | Patrick Palka <patrick@parcs.ath.cx> | 2015-07-25 15:57:00 -0400 |
commit | 5836a818eccb180d75c92ce4c861abb6fe8dec23 (patch) | |
tree | 624044ca5df5a6c192e47933a735ab4fe9aaea71 /readline/util.c | |
parent | b8cc7b2e9afab37eb9a7cff0d3ae4ebbcf7d494f (diff) | |
download | gdb-5836a818eccb180d75c92ce4c861abb6fe8dec23.zip gdb-5836a818eccb180d75c92ce4c861abb6fe8dec23.tar.gz gdb-5836a818eccb180d75c92ce4c861abb6fe8dec23.tar.bz2 |
Revert "Sync readline/ to version 7.0 alpha"
This reverts commit b558ff043d41ba8d17a82f5f9ae5f9dade66160e.
This reverts commit 4a11f2065906976675808364ddbd1c0f77eea41f.
The initial import commit failed to retain local changes made to
readline's configure.in (and the commit message erroneously stated that
there were no local changes that needed to be reapplied). Also the
import caused a couple of build errors and a scattering of testsuite
regressions throughout many arches. It's probably better to start over
with this import, hopefully more carefully next time.
Diffstat (limited to 'readline/util.c')
-rw-r--r-- | readline/util.c | 94 |
1 files changed, 10 insertions, 84 deletions
diff --git a/readline/util.c b/readline/util.c index e75e255..321dee2 100644 --- a/readline/util.c +++ b/readline/util.c @@ -1,6 +1,6 @@ /* util.c -- readline utility functions */ -/* Copyright (C) 1987-2012 Free Software Foundation, Inc. +/* Copyright (C) 1987-2010 Free Software Foundation, Inc. This file is part of the GNU Readline Library (Readline), a library for reading lines of text with interactive input and history editing. @@ -55,7 +55,6 @@ #include "rlprivate.h" #include "xmalloc.h" -#include "rlshell.h" /* **************************************************************** */ /* */ @@ -108,11 +107,8 @@ _rl_abort_internal () while (rl_executing_macro) _rl_pop_executing_macro (); - RL_UNSETSTATE (RL_STATE_MULTIKEY); /* XXX */ - rl_last_func = (rl_command_func_t *)NULL; - - _rl_longjmp (_rl_top_level, 1); + longjmp (_rl_top_level, 1); return (0); } @@ -373,13 +369,11 @@ _rl_strpbrk (string1, string2) doesn't matter (strncasecmp). */ int _rl_strnicmp (string1, string2, count) - const char *string1; - const char *string2; + char *string1, *string2; int count; { - register const char *s1; - register const char *s2; - register int d; + register char *s1, *s2; + int d; if (count <= 0 || (string1 == string2)) return 0; @@ -403,12 +397,10 @@ _rl_strnicmp (string1, string2, count) /* strcmp (), but caseless (strcasecmp). */ int _rl_stricmp (string1, string2) - const char *string1; - const char *string2; + char *string1, *string2; { - register const char *s1; - register const char *s2; - register int d; + register char *s1, *s2; + int d; s1 = string1; s2 = string2; @@ -476,7 +468,6 @@ _rl_savestring (s) return (strcpy ((char *)xmalloc (1 + (int)strlen (s)), (s))); } -#if defined (DEBUG) #if defined (USE_VARARGS) static FILE *_rl_tracefp; @@ -512,18 +503,11 @@ _rl_trace (va_alist) int _rl_tropen () { - char fnbuf[128], *x; + char fnbuf[128]; if (_rl_tracefp) fclose (_rl_tracefp); -#if defined (_WIN32) && !defined (__CYGWIN__) - x = sh_get_env_value ("TEMP"); - if (x == 0) - x = "."; -#else - x = "/var/tmp"; -#endif - sprintf (fnbuf, "%s/rltrace.%ld", x, (long)getpid()); + sprintf (fnbuf, "/var/tmp/rltrace.%ld", getpid()); unlink(fnbuf); _rl_tracefp = fopen (fnbuf, "w+"); return _rl_tracefp != 0; @@ -539,62 +523,4 @@ _rl_trclose () return r; } -void -_rl_settracefp (fp) - FILE *fp; -{ - _rl_tracefp = fp; -} -#endif -#endif /* DEBUG */ - - -#if HAVE_DECL_AUDIT_USER_TTY && defined (ENABLE_TTY_AUDIT_SUPPORT) -#include <sys/socket.h> -#include <linux/audit.h> -#include <linux/netlink.h> - -/* Report STRING to the audit system. */ -void -_rl_audit_tty (string) - char *string; -{ - struct sockaddr_nl addr; - struct msghdr msg; - struct nlmsghdr nlm; - struct iovec iov[2]; - size_t size; - int fd; - - fd = socket (AF_NETLINK, SOCK_RAW, NETLINK_AUDIT); - if (fd < 0) - return; - size = strlen (string) + 1; - - nlm.nlmsg_len = NLMSG_LENGTH (size); - nlm.nlmsg_type = AUDIT_USER_TTY; - nlm.nlmsg_flags = NLM_F_REQUEST; - nlm.nlmsg_seq = 0; - nlm.nlmsg_pid = 0; - - iov[0].iov_base = &nlm; - iov[0].iov_len = sizeof (nlm); - iov[1].iov_base = string; - iov[1].iov_len = size; - - addr.nl_family = AF_NETLINK; - addr.nl_pid = 0; - addr.nl_groups = 0; - - msg.msg_name = &addr; - msg.msg_namelen = sizeof (addr); - msg.msg_iov = iov; - msg.msg_iovlen = 2; - msg.msg_control = NULL; - msg.msg_controllen = 0; - msg.msg_flags = 0; - - (void)sendmsg (fd, &msg, 0); - close (fd); -} #endif |