X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fatexit.c;h=a81a8cb6ec34f06e1e8174959430c8573afdbc84;hb=cd6cfe0f578c4f744ddc9a342243aff6b42f8027;hp=1ca1e7fa3eeb3e06fd8424d5690854e0eaab4e90;hpb=7842803c173209f48b087e149cae6204a48bb000;p=pdclib.old diff --git a/functions/stdlib/atexit.c b/functions/stdlib/atexit.c index 1ca1e7f..a81a8cb 100644 --- a/functions/stdlib/atexit.c +++ b/functions/stdlib/atexit.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* atexit( void (*)( void ) ) This file is part of the Public Domain C Library (PDCLib). @@ -12,21 +10,19 @@ #ifndef REGTEST -extern struct _PDCLIB_exitfunc_t * regstack; +extern void (*_PDCLIB_regstack[])( void ); +extern size_t _PDCLIB_regptr; int atexit( void (*func)( void ) ) { - struct _PDCLIB_exitfunc_t * regfunc = (struct _PDCLIB_exitfunc_t *)malloc( sizeof( struct _PDCLIB_exitfunc_t ) ); - if ( regfunc == NULL ) + if ( _PDCLIB_regptr == 0 ) { return -1; } else { - regfunc->func = func; - regfunc->next = regstack; - regstack = regfunc; - return 0; + _PDCLIB_regstack[ --_PDCLIB_regptr ] = func; + return 0; } } @@ -34,12 +30,32 @@ int atexit( void (*func)( void ) ) #ifdef TEST #include <_PDCLIB_test.h> +#include + +static int flags[ 32 ]; + +static void counthandler( void ) +{ + static int count = 0; + flags[ count ] = count; + ++count; +} + +static void checkhandler( void ) +{ + for ( int i = 0; i < 31; ++i ) + { + assert( flags[ i ] == i ); + } +} -int main() +int main( void ) { - int NO_TESTDRIVER = 0; - BEGIN_TESTS; - TESTCASE( NO_TESTDRIVER ); + TESTCASE( atexit( &checkhandler ) == 0 ); + for ( int i = 0; i < 31; ++i ) + { + TESTCASE( atexit( &counthandler ) == 0 ); + } return TEST_RESULTS; }