- (bal) Corrected on_exit() emulation via atexit().

This commit is contained in:
Ben Lindstrom 2001-05-17 03:40:05 +00:00
Родитель ca60a9bf66
Коммит b467ddb124
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -17,6 +17,7 @@
[channels.c nchan.c]
more select() error fixes (don't set rfd/wfd to -1).
- (bal) Enabled USE_PIPES for Cygwin on Corinna Vinschen <vinschen@redhat.com>
- (bal) Corrected on_exit() emulation via atexit().
20010512
- OpenBSD CVS Sync
@ -5422,4 +5423,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1224 2001/05/17 03:32:50 mouring Exp $
$Id: ChangeLog,v 1.1225 2001/05/17 03:40:05 mouring Exp $

Просмотреть файл

@ -1,7 +1,7 @@
#ifndef _DEFINES_H
#define _DEFINES_H
/* $Id: defines.h,v 1.64 2001/05/12 00:08:38 mouring Exp $ */
/* $Id: defines.h,v 1.65 2001/05/17 03:40:05 mouring Exp $ */
/* Some platforms need this for the _r() functions */
#if !defined(_REENTRANT) && !defined(SNI)
@ -418,7 +418,7 @@ struct winsize {
#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
# define atexit(a) on_exit(a, NULL)
# define atexit(a, NULL) on_exit(a, NULL)
#else
# if defined(HAVE_XATEXIT)
# define atexit(a) xatexit(a)