Home | History | Annotate | Download | only in Python

Lines Matching refs:NEXITFUNCS

1747 #define NEXITFUNCS 32
1748 static void (*exitfuncs[NEXITFUNCS])(void);
1749 static int nexitfuncs = 0;
1753 if (nexitfuncs >= NEXITFUNCS)
1755 exitfuncs[nexitfuncs++] = func;
1785 while (nexitfuncs > 0)
1786 (*exitfuncs[--nexitfuncs])();