Commit f9db33d15dac13e98db4d98b07ed0e404897a55b

Nick Mathewson 2010-04-09T19:43:54

Add LIST_ delaration to event_struct.h to supplment TAILQ_ Generally, LIST_ can be a little faster than TAILQ_ for most operations. We only need to use TAILQ_ when we care about traversing lists from tail-to-head, or we need to be able to add items to the end of the list.