Example #1
0
static void BWLimiterCloseDown(PacketNode *head, PacketNode *tail)
{
	UNREFERENCED_PARAMETER(tail);
	UNREFERENCED_PARAMETER(head);
	clearBufPackets(tail);
	endTimePeriod();
}
Example #2
0
void cleanup() {

    if(timeout) { IupDestroy(timeout); }
    if(timer)   { IupDestroy(timer);   }

    IupClose();
    endTimePeriod(); // try close if not closing
}
Example #3
0
File: main.c Project: jslap/clumsy
void cleanup() {
    IupDestroy(timer);
    IupClose();
    endTimePeriod(); // try close if not closing
}