X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fatexit.c;h=0d61e32a818f39c9f6645f279bd6331ab5bfdb4a;hb=0788e1f853cae7be12203116b0d277ab1d653afb;hp=52df21c22c1991ff523ec2d3e44e1d787141de79;hpb=492cae1767efcce269e5472dcf0a18e6abf546a1;p=pdclib diff --git a/functions/stdlib/atexit.c b/functions/stdlib/atexit.c index 52df21c..0d61e32 100644 --- a/functions/stdlib/atexit.c +++ b/functions/stdlib/atexit.c @@ -12,20 +12,18 @@ #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; + _PDCLIB_regstack[ --_PDCLIB_regptr ] = func; return 0; } } @@ -34,11 +32,33 @@ int atexit( void (*func)( void ) ) #ifdef TEST #include <_PDCLIB_test.h> +#include + +static int flags[ 32 ]; + +static void counthandler() +{ + static int rc = 0; + flags[ rc ] = rc; + ++rc; +} + +static void checkhandler() +{ + for ( int i = 0; i < 31; ++i ) + { + assert( flags[ i ] == i ); + } +} int main() { BEGIN_TESTS; - TESTCASE( NO_TESTDRIVER ); + TESTCASE( atexit( &checkhandler ) == 0 ); + for ( int i = 0; i < 31; ++i ) + { + TESTCASE( atexit( &counthandler ) == 0 ); + } return TEST_RESULTS; }