diff options
author | Anders Broman <anders.broman@ericsson.com> | 2006-05-28 19:49:07 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2006-05-28 19:49:07 +0000 |
commit | 996d4db495e60df8a627097e3885acdce209132c (patch) | |
tree | 31a9a64d87d2dd5f357179caf0fe9fe8538dfeb6 /epan/emem.h | |
parent | 5db0c85982c837278fb397d53233303cd0eaf8e3 (diff) | |
download | wireshark-996d4db495e60df8a627097e3885acdce209132c.tar.gz wireshark-996d4db495e60df8a627097e3885acdce209132c.tar.bz2 wireshark-996d4db495e60df8a627097e3885acdce209132c.zip |
Ethereal->Wireshark
svn path=/trunk/; revision=18234
Diffstat (limited to 'epan/emem.h')
-rw-r--r-- | epan/emem.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/emem.h b/epan/emem.h index c4c2f90e53..a62eb5a9ec 100644 --- a/epan/emem.h +++ b/epan/emem.h @@ -1,5 +1,5 @@ /* emem.h - * Definitions for ethereal memory management and garbage collection + * Definitions for Wireshark memory management and garbage collection * Ronnie Sahlberg 2005 * * $Id$ @@ -31,8 +31,8 @@ /* Functions for handling memory allocation and garbage collection with * a packet lifetime scope. * These functions are used to allocate memory that will only remain persistent - * until ethereal starts dissecting the next packet in the list. - * Everytime ethereal starts decoding the next packet all memory allocated + * until Wireshark starts dissecting the next packet in the list. + * Everytime Wireshark starts decoding the next packet all memory allocated * through these functions will be released back to the free pool. * * These functions are very fast and offer automatic garbage collection: @@ -40,7 +40,7 @@ * the previous packet is freed. */ /* Initialize packet-lifetime memory allocation pool. This function is called - * once when [t]ethereal is initialized to set up the required structures. + * once when [t]Wireshark is initialized to set up the required structures. */ void ep_init_chunk(void); @@ -116,15 +116,15 @@ void* ep_stack_pop(ep_stack_t stack); /* Functions for handling memory allocation and garbage collection with * a capture lifetime scope. * These functions are used to allocate memory that will only remain persistent - * until ethereal opens a new capture or capture file. - * Everytime ethereal starts a new capture or opens a new capture file + * until Wireshark opens a new capture or capture file. + * Everytime Wireshark starts a new capture or opens a new capture file * all the data allocated through these functions will be released back * to the free pool. * * These functions are very fast and offer automatic garbage collection. */ /* Initialize capture-lifetime memory allocation pool. This function is called - * once when [t]ethereal is initialized to set up the required structures. + * once when [t]Wireshark is initialized to set up the required structures. */ void se_init_chunk(void); |