- (bal) Corrected on_exit() emulation via atexit().
This commit is contained in:
parent
ca60a9bf66
commit
b467ddb124
|
@ -17,6 +17,7 @@
|
||||||
[channels.c nchan.c]
|
[channels.c nchan.c]
|
||||||
more select() error fixes (don't set rfd/wfd to -1).
|
more select() error fixes (don't set rfd/wfd to -1).
|
||||||
- (bal) Enabled USE_PIPES for Cygwin on Corinna Vinschen <vinschen@redhat.com>
|
- (bal) Enabled USE_PIPES for Cygwin on Corinna Vinschen <vinschen@redhat.com>
|
||||||
|
- (bal) Corrected on_exit() emulation via atexit().
|
||||||
|
|
||||||
20010512
|
20010512
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
|
@ -5422,4 +5423,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- 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
|
#ifndef _DEFINES_H
|
||||||
#define _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 */
|
/* Some platforms need this for the _r() functions */
|
||||||
#if !defined(_REENTRANT) && !defined(SNI)
|
#if !defined(_REENTRANT) && !defined(SNI)
|
||||||
|
@ -418,7 +418,7 @@ struct winsize {
|
||||||
#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
|
#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
|
||||||
|
|
||||||
#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
|
#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
|
||||||
# define atexit(a) on_exit(a, NULL)
|
# define atexit(a, NULL) on_exit(a, NULL)
|
||||||
#else
|
#else
|
||||||
# if defined(HAVE_XATEXIT)
|
# if defined(HAVE_XATEXIT)
|
||||||
# define atexit(a) xatexit(a)
|
# define atexit(a) xatexit(a)
|
||||||
|
|
Loading…
Reference in New Issue