(exit): Handle ef_cxa exit functions.

This commit is contained in:
Ulrich Drepper 1999-12-27 21:53:13 +00:00
parent dd6c7ca53f
commit 99bea377bc

View File

@ -56,6 +56,9 @@ exit (int status)
case ef_at:
(*f->func.at) ();
break;
case ef_cxa:
(*f->func.cxa.fn) (f->func.cxa.arg);
break;
}
}
while (__exit_funcs->idx > 0);