Update. Old logs are in ChangeLog.7.
1998-08-11 18:39 Ulrich Drepper <drepper@cygnus.com> * string/strsignal.c (strsignal): Count real-time signals from zero. See ChangeLog.8 for earlier changes.
This commit is contained in:
parent
a2bde807bf
commit
f81d98d612
12549
ChangeLog.8
Normal file
12549
ChangeLog.8
Normal file
File diff suppressed because it is too large
Load Diff
@ -4330,7 +4330,7 @@ free_check(mem, caller) Void_t* mem; const Void_t *caller;
|
||||
(void)mutex_unlock(&main_arena.mutex);
|
||||
switch(check_action) {
|
||||
case 1:
|
||||
fprintf(stderr, "free(): invalid pointer %lx!\n", (long)(mem));
|
||||
fprintf(stderr, "free(): invalid pointer %p!\n", (long)(mem));
|
||||
break;
|
||||
case 2:
|
||||
abort();
|
||||
@ -4369,7 +4369,7 @@ realloc_check(oldmem, bytes, caller)
|
||||
(void)mutex_unlock(&main_arena.mutex);
|
||||
switch(check_action) {
|
||||
case 1:
|
||||
fprintf(stderr, "realloc(): invalid pointer %lx!\n", (long)(oldmem));
|
||||
fprintf(stderr, "realloc(): invalid pointer %p!\n", (long)(oldmem));
|
||||
break;
|
||||
case 2:
|
||||
abort();
|
||||
|
@ -60,12 +60,15 @@ strsignal (int signum)
|
||||
signum < 0 || signum >= NSIG || (desc = _sys_siglist[signum]) == NULL)
|
||||
{
|
||||
char *buffer = getbuffer ();
|
||||
int len = __snprintf (buffer, BUFFERSIZ - 1,
|
||||
int len;
|
||||
#ifdef SIGRTMIN
|
||||
signum >= SIGRTMIN && signum <= SIGRTMAX
|
||||
? _("Real-time signal %d") :
|
||||
if (signum >= SIGRTMIN && signum <= SIGRTMAX)
|
||||
len = __snprintf (buffer, BUFFERSIZ - 1, _("Real-time signal %d"),
|
||||
signum - SIGRTMIN);
|
||||
else
|
||||
#endif
|
||||
_("Unknown signal %d"), signum);
|
||||
len = __snprintf (buffer, BUFFERSIZ - 1, _("Unknown signal %d"),
|
||||
signum);
|
||||
if (len < 0)
|
||||
buffer = NULL;
|
||||
else
|
||||
|
@ -40,11 +40,11 @@ stub_warning (__path_search)
|
||||
in DIR (if applicable), using template TMPL.
|
||||
If OPENIT is 1, open the file and return a fd. If LARGEFILE is 1,
|
||||
use open64() to do that. */
|
||||
int
|
||||
__gen_tempname (tmpl, openit, largefile)
|
||||
int
|
||||
__gen_tempname (tmpl, openit, largefile)
|
||||
char *tmpl;
|
||||
int openit;
|
||||
int large_file;
|
||||
int largefile;
|
||||
{
|
||||
__set_errno (ENOSYS);
|
||||
return -1;
|
||||
|
@ -1,4 +1,4 @@
|
||||
# @(#)backward 7.14
|
||||
# @(#)backward 7.15
|
||||
|
||||
# This file provides links between current names for time zones
|
||||
# and their old names. Many names changed in late 1993.
|
||||
@ -38,7 +38,6 @@ Link America/Havana Cuba
|
||||
Link Africa/Cairo Egypt
|
||||
Link Europe/Dublin Eire
|
||||
Link Europe/London GB
|
||||
Link Etc/GMT GMT
|
||||
Link Etc/GMT+0 GMT+0
|
||||
Link Etc/GMT-0 GMT-0
|
||||
Link Etc/GMT0 GMT0
|
||||
|
@ -1,4 +1,4 @@
|
||||
# @(#)etcetera 7.9
|
||||
# @(#)etcetera 7.10
|
||||
|
||||
# These entries are mostly present for historical reasons, so that
|
||||
# people in areas not otherwise covered by the tz files could "zic -l"
|
||||
@ -10,6 +10,12 @@ Zone Etc/GMT 0 - GMT
|
||||
Zone Etc/UTC 0 - UTC
|
||||
Zone Etc/UCT 0 - UCT
|
||||
|
||||
# The following link uses older naming conventions,
|
||||
# but it belongs here, not in the file `backward',
|
||||
# as functions like gmtime load the "GMT" file to handle leap seconds properly.
|
||||
# We want this to work even on installations that omit the other older names.
|
||||
Link Etc/GMT GMT
|
||||
|
||||
Link Etc/UTC Etc/Universal
|
||||
Link Etc/UTC Etc/Zulu
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# @(#)europe 7.54
|
||||
# @(#)europe 7.55
|
||||
|
||||
# This data is by no means authoritative; if you think you know better,
|
||||
# go ahead and edit the file (and please send any changes to
|
||||
@ -1610,11 +1610,16 @@ Zone Europe/Vilnius 1:41:16 - LMT 1880
|
||||
1:00 C-Eur CE%sT 1944 Aug
|
||||
3:00 Russia MSK/MSD 1991 Mar 31 2:00s
|
||||
2:00 1:00 EEST 1991 Sep 29 2:00s
|
||||
2:00 C-Eur EE%sT
|
||||
2:00 C-Eur EE%sT 1998 Mar 29 2:00s
|
||||
1:00 C-Eur CE%sT
|
||||
# From Paul Eggert (1996-11-22):
|
||||
# IATA SSIM (1992/1996) says Lithuania uses W-Eur rules, but since it is
|
||||
# known to be wrong about Estonia and Latvia, assume it's wrong here too.
|
||||
|
||||
# From Marius Gedminas <mgedmin@pub.osf.lt> (1998-08-07):
|
||||
# I would like to inform that in this year Lithuanian time zone
|
||||
# (Europe/Vilnius) was changed.
|
||||
|
||||
# Luxembourg
|
||||
# Whitman disagrees with most of these dates in minor ways; go with Shanks.
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
|
Loading…
x
Reference in New Issue
Block a user