1
vote
2answers
56 views
What should be the reason behind this leaky line ?
I have follwowing peace of code in which I have specified the leaky line . As I am new to iPhone developement I can't understand what actually is wrong with that line . please have …
0
votes
3answers
86 views
Dynamic Memory Allocation in C++
What is the difference between the 'delete' and 'dispose' C++ operators with regards to dynamic memory allocation?
3
votes
6answers
162 views
doubts regarding Memory management in .net
I'm ready about Memory management in C# from the book "Professional C#"
The presence of the garbage collector
means that you will usually not worry
about objects that you n …
2
votes
5answers
125 views
Heap fragmentation and windows memory manager
Hi,
I'm having trouble with memory fragmentation in my program and not being able to allocate very large memory blocks after a while. I've read the related posts on this forum - m …
2
votes
2answers
49 views
Objective-C member initializiation of autoreleased objects
Hey so if I have some property like
@interface MyClass {
NSArray* myArray;
}
@end
@property (retain, nonatomic) NSArray* myArray;
In my init method should I do something lik …
2
votes
4answers
31 views
Does exiting from a pthread release malloced memory ?
Let's say I pthread_create and then pthread_detach it. Now, from within the thread function, I malloc some block.
When the thread exits, will the malloc'ed memory be freed automa …
2
votes
2answers
63 views
malloc results in segmentation fault after mprotect
I'm getting a segmentation fault the first time I call malloc() after I protect a memory region with mprotect(). This is a code sniplet that does the memory allocation the the prot …
1
vote
1answer
49 views
NSPredicate Memory Issues
So I am trying to fix this really annoying bug. If I filter my array like the ideal version with NSPredicate, I will get EXC_BAD_ACCESS because it tries to call release on the obje …
1
vote
2answers
48 views
Leaks showing extended memory usage when on iPhone vs Simulator
When, I run my application in the simulator using the Leaks instrument, it uses about 2.5mb of memory. When I run it on the iPhone, it takes forever to launch, slowly climbs to ~3 …
1
vote
5answers
96 views
Objective-C returning alloc’d memory in a function == bad?
This is on the iPhone.
So what if I have a function like
- (SomeObject*)buildObject;
Do I need to pass in a variable that I have already alloc'd outside like
- (void)assignObj …
0
votes
2answers
62 views
doubts regarding Memory management in .net [closed]
Possible Duplicate:
doubts regarding Memory management in .net
I'm reading about Memory management in C# from the book "Professional C#"
The presence of the garbage co …
4
votes
6answers
142 views
GUI for a GNU Debugger
Hi, am pretty excited with the GNU Debugger and a GUI called Insight as it has saved me A LOT OF time. Thus I am posting this question/answer for other newbies out there like me ha …
2
votes
2answers
41 views
Settings IBOutlets to nil in dealloc
In the section titled 'Memory Warnings' here http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmNibObjects.html, I don't follow why the …
0
votes
5answers
134 views
Java: Garbage Collection
I'm having an out of memory error. I have a large range of inputs (2^40), that is too large to hold at once. Each input is a String[].
Instead, I thought I'd run my test program …
1
vote
2answers
80 views
Loop through NSMutableArray of custom objects in the most memory efficient way
What is the most memory efficient way to loop through an NSMutableArray of custom objects?
I need to check a value in each object in the array and return how many of that type of o …
