aboutsummaryrefslogtreecommitdiffstats
path: root/epan/emem.c
AgeCommit message (Expand)AuthorFilesLines
2008-01-07From Jim Young (bug 2162):Stig Bjørlykke1-2/+2
2007-12-04rework how emem trees indexed by strings so that traversing the tree Ronnie Sahlberg1-73/+92
2007-12-04for nested trees, teach emem about which nodes contain a pointer to a Ronnie Sahlberg1-9/+22
2007-12-03add tree traversal functionsRonnie Sahlberg1-0/+40
2007-11-28(Somewhat academic): Fix fread related bug (when using GTK1).Bill Meier1-1/+1
2007-08-28SNMP:Luis Ontanon1-3/+2
2007-05-29Check for G_GINT64_MODIFIER in Wireshark as we do in Wiretap.Guy Harris1-2/+2
2007-05-29From David Howells :Sebastien Tandel1-2/+2
2007-04-28In emem_tree_lookup_string(), return NULL if the allocation fails.Guy Harris1-1/+1
2007-04-28In calls to the emem_tree routines, forcibly align items not known to beGuy Harris1-25/+39
2007-04-23Add some GCC warnings to the standard set, and add some others to theGuy Harris1-2/+2
2007-04-04Fix build failures due to windows.h being included before winsock2.h via othe...Graham Bloice1-5/+5
2007-01-25Squelch Coverity CIDs 225, 226, and 227.Gerald Combs1-1/+9
2007-01-15instead of simply doing an assert when running out of memory in emem, throw a...Ulf Lamping1-3/+11
2006-11-15fix a warningUlf Lamping1-1/+1
2006-11-11fix so that tcp.pdu.time works again.Ronnie Sahlberg1-1/+22
2006-08-17add trees with PErmanent allocation scope which will be useful for constructingRonnie Sahlberg1-0/+17
2006-08-14make creation of subtrees used for the _array tree type use the same allocati...Ronnie Sahlberg1-15/+35
2006-08-14rename some structures and defines from the se_tree to the emem_tree prefixRonnie Sahlberg1-80/+80
2006-08-12put a memory allocator function pointer inside the tree structure so that all...Ronnie Sahlberg1-6/+8
2006-08-12rename some inline functions from se_ to emem_ prefix as a first step to gene...Ronnie Sahlberg1-15/+15
2006-06-20From Albert Chin:Anders Broman1-6/+16
2006-06-17Not all UN*Xes have MAP_ANONYMOUS; some have MAP_ANON instead, and someGuy Harris1-1/+20
2006-06-16From Albert Chin Jaap Keuter1-1/+1
2006-05-31Tethereal/tethereal -> TShark/tshark.Gerald Combs1-2/+2
2006-05-28Ethereal->WiresharkAnders Broman1-3/+3
2006-05-21name changeRonnie Sahlberg1-2/+2
2006-05-18Improve fix for Bug 915 by using GetVersionEx() as it is recommended by Micro...Lars Roland1-7/+12
2006-05-17attempt to fix #915:Ulf Lamping1-2/+6
2006-05-15Change return value checking to the true meaning of the spec:Jaap Keuter1-2/+2
2006-05-02Not all compilers support unnamed struct/union fields withinGuy Harris1-13/+13
2006-04-28Fix logic used to test protection under Windows OT. Only initializeGerald Combs1-14/+27
2006-04-26If we're running under Windows 95/98/Me, don't abort if we can't protectGerald Combs1-15/+21
2006-03-18rename se_tree_lookup32_less_than_or_equal()Ronnie Sahlberg1-1/+1
2006-03-18add new se_tree_lookup32_less_than_or_equal() callRonnie Sahlberg1-0/+88
2006-03-11revert back to svn 17587Ronnie Sahlberg1-18/+59
2006-03-11oops removed one check too manyRonnie Sahlberg1-0/+3
2006-03-11remove some redundant calls and checks and pass the required pointers as para...Ronnie Sahlberg1-59/+15
2006-03-11give se_trees names so that it is easier to debug and to log how often ce...Ronnie Sahlberg1-3/+5
2006-03-11forgot to paint a node causing massively unbalanced treeRonnie Sahlberg1-28/+27
2006-03-10avoid doing the lookup of a key twice while inserting items to a tree with an...Luis Ontanon1-5/+85
2006-03-10fix missing return bug from didierRonnie Sahlberg1-1/+1
2006-03-10make using canaries optionalRonnie Sahlberg1-3/+49
2006-03-10add a define that controls explicitely whether we want to use guard pages (if...Ronnie Sahlberg1-11/+18
2006-03-07From Jeff Morriss:Gerald Combs1-19/+35
2006-03-07Rename set_string_hash... into se_tree_xxx_string as proposed by ronnie for c...Luis Ontanon1-7/+2
2006-03-07use an elaborated key for the string keyed "hash table"Luis Ontanon1-54/+60
2006-03-07Add a hash table with string keys based on the red/black tree.Luis Ontanon1-0/+70
2006-03-06add helper to build (red/black) trees from a key that is a vector of guin32 a...Ronnie Sahlberg1-1/+67
2006-03-05initial implementation of binary tree support with se allocation scopeRonnie Sahlberg1-0/+326