aboutsummaryrefslogtreecommitdiffstats
path: root/epan/emem.c
AgeCommit message (Expand)AuthorFilesLines
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
2006-03-03Use intptr_t for int-to-pointer conversions.Gerald Combs1-4/+6
2006-02-27Add guard pages to emem.c. GP memory is protected using mprotect()Gerald Combs1-19/+92
2006-02-23Print an error when we detect memory corruption. Fix a typo in a comment.Gerald Combs1-5/+5
2006-02-14Have the emem.c memdup routines accept and return "void *", asGuy Harris1-2/+2
2006-01-18In packet-cops.c use proto_item_append_text() instead of creating aGerald Combs1-0/+2
2006-01-11Pass the correct arguments to fopen().Gerald Combs1-1/+1
2006-01-11Fix compiling under GLib 1, squelch a gcc warning.Gerald Combs1-3/+5
2006-01-10Close "/dev/urandom" if we manage to open it.Gerald Combs1-0/+1
2006-01-10Allocate memory on 8-byte boundaries again. Tweak the way we Gerald Combs1-60/+80
2006-01-10Allowing pointer arithmetic on "void *"s is a GCCism; cast "void *"s toGuy Harris1-2/+2
2006-01-09Add canary values after each allocation. If our canaries values don'tGerald Combs1-81/+151
2005-12-09if passed a NULL string, make se_strdup() return the static stringRonnie Sahlberg1-1/+9
2005-10-10Add "ep_strdup_vprintf()" and "se_strdup_vprintf()", for completeness.Guy Harris1-16/+38
2005-10-08make .._strndup() not to call strndup.Luis Ontanon1-10/+14
2005-10-06ep_strndup and se_strndup do not have to expect strings to be null terminated.Luis Ontanon1-8/+0