summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/mem.cpp
authorzecke <zecke>2004-10-12 00:38:29 (UTC)
committer zecke <zecke>2004-10-12 00:38:29 (UTC)
commitc4471939b0b1a187646a85c04d3290c23db78c9d (patch) (unidiff)
tree569d5408cde7f96a89ab7be339ec7256bac604ef /noncore/settings/aqpkg/mem.cpp
parent7541d90e82392e5e727d8bdc818c5ec2f7b2bd3e (diff)
downloadopie-c4471939b0b1a187646a85c04d3290c23db78c9d.zip
opie-c4471939b0b1a187646a85c04d3290c23db78c9d.tar.gz
opie-c4471939b0b1a187646a85c04d3290c23db78c9d.tar.bz2
Try harder to remove stdc++ need
-Remove using namespace std; -Remove include <iostream> -Replace std::list with QValueList
Diffstat (limited to 'noncore/settings/aqpkg/mem.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/aqpkg/mem.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/noncore/settings/aqpkg/mem.cpp b/noncore/settings/aqpkg/mem.cpp
index 4c6117b..d8de09f 100644
--- a/noncore/settings/aqpkg/mem.cpp
+++ b/noncore/settings/aqpkg/mem.cpp
@@ -25,14 +25,16 @@
25 59 Temple Place - Suite 330, 25 59 Temple Place - Suite 330,
26 Boston, MA 02111-1307, USA. 26 Boston, MA 02111-1307, USA.
27 27
28*/ 28*/
29 29
30#include <stdio.h> 30#include <stdio.h>
31#include <list> 31#include <stdlib.h>
32using namespace std; 32#include <string.h>
33
34#include <qvaluelist.h>
33 35
34#define __MEMFILE_C 36#define __MEMFILE_C
35#include "global.h" 37#include "global.h"
36 38
37#ifdef _DEBUG 39#ifdef _DEBUG
38 40
@@ -56,13 +58,13 @@ typedef struct {
56 longaddress; 58 longaddress;
57 longsize; 59 longsize;
58 charfile[64]; 60 charfile[64];
59 longline; 61 longline;
60} ALLOC_INFO; 62} ALLOC_INFO;
61 63
62typedef list<ALLOC_INFO*> AllocList; 64typedef QValueList<ALLOC_INFO*> AllocList;
63 65
64AllocList allocList; 66AllocList allocList;
65 67
66 68
67 69
68void AddTrack(long addr, long asize, const char *fname, long lnum) 70void AddTrack(long addr, long asize, const char *fname, long lnum)
@@ -77,13 +79,13 @@ void AddTrack(long addr, long asize, const char *fname, long lnum)
77 info->size = asize; 79 info->size = asize;
78 allocList.insert(allocList.begin(), info); 80 allocList.insert(allocList.begin(), info);
79}; 81};
80 82
81void RemoveTrack(long addr) 83void RemoveTrack(long addr)
82{ 84{
83 AllocList::iterator i; 85 AllocList::Iterator i;
84 86
85 bool found = false; 87 bool found = false;
86 for(i = allocList.begin(); i != allocList.end(); i++) 88 for(i = allocList.begin(); i != allocList.end(); i++)
87 { 89 {
88 if((*i)->address == addr) 90 if((*i)->address == addr)
89 { 91 {
@@ -93,13 +95,13 @@ void RemoveTrack(long addr)
93 } 95 }
94 } 96 }
95} 97}
96 98
97void DumpUnfreed() 99void DumpUnfreed()
98{ 100{
99 AllocList::iterator i; 101 AllocList::Iterator i;
100 long totalSize = 0; 102 long totalSize = 0;
101 char buf[1024]; 103 char buf[1024];
102 // Debug output, okay to leave untranslated 104 // Debug output, okay to leave untranslated
103 for(i = allocList.begin(); i != allocList.end(); i++) { 105 for(i = allocList.begin(); i != allocList.end(); i++) {
104 sprintf(buf, "%-15s: LINE %ld, ADDRESS %ld %ld unfreed", 106 sprintf(buf, "%-15s: LINE %ld, ADDRESS %ld %ld unfreed",
105 (*i)->file, (*i)->line, (*i)->address, (*i)->size); 107 (*i)->file, (*i)->line, (*i)->address, (*i)->size);