Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * Implementation if __cxa_finalize.
  3.  */
  4.  
  5.  
  6. #include <stdlib.h>
  7. #include <reent.h>
  8. #include "atexit.h"
  9.  
  10. /*
  11.  * Call registered exit handlers.  If D is null then all handlers are called,
  12.  * otherwise only the handlers from that DSO are called.
  13.  */
  14.  
  15. void
  16. _DEFUN (__cxa_finalize, (d),
  17.         void * d)
  18. {
  19.   __call_exitprocs (0, d);
  20. }
  21.