1
vote
2answers
13 views
Using dismissModalViewControllerAnimated won’t free any memory
I have a very simple code to show a modal controller (nextController is a class member):
nextController = [[InstructionsScreen alloc] initWithNibName:@"InstructionsScreen" bundle:nil];
[self …
0
votes
1answer
20 views
Understanding NSS PK11_CipherOp and C memory allocation
Hey all,
Having some issues with C. I have this is my code:
// First line works, second line does not!
char outbuf[1024];
// char *outbuf = (char *) malloc(1024); // char is always 1
I am …
0
votes
8answers
140 views
When should I call the Java garbage collector? [closed]
Possible Duplicate:
System.gc() in java
Out of curiosity: Does anybody ever use System.gc() in Java? If so, then when do you call it? Before running a memory consuming algorithm? Or after …
0
votes
1answer
18 views
Proper way to dispose of CvMemStorage
I have a CvMemStorage that is being used in contour finding. After the
process is finished and the contours have been used what is the correct way to
free up the memory that was allocated to …
1
vote
2answers
45 views
c# picturebox memory releasing problem
Hi everybody. I'm a newby in C#. I have to repeatedly refresh a GUI picture box in a worker thread. The image is acquired from a camera polling a driver with a GetImage method that retrives the image …
1
vote
7answers
511 views
Learn Obj-C Memory Management
I come from a web development background. I'm good at XHTML, CSS, JavaScript, PHP and MySQL, because I use all of those technologies at my day job.
Recently I've been tinkering with Obj-C in Xcode in …
0
votes
1answer
38 views
Loading/saving images is slow in iPhone OS
I'm trying to make a view that displays several images, one after another. How does the built-in Photos app load all those photos into a UIScrollView so quickly? It takes forever when I try to do it, …
0
votes
2answers
50 views
Core Data Malloc Errors
Hi there,
I've noticed I'm getting a few errors at random points in my app. I've had 2 errors, "double free" and "incorrect checksum for freed object". Heres the stack trace of a "double free" error. …
0
votes
2answers
22 views
What are the side effects of using EmptyWorkingSet?
Hi, I'm using the code below to free up memory on some running programs because my own program needs large memory resources to run faster.
[DllImport("psapi.dll")]
public static extern bool …
0
votes
4answers
144 views
Does my code leak memory (python)?
links_list = char.getLinks(words)
for source_url in links_list:
try:
print 'Downloading URL: ' + source_url
urldict = hash_url(source_url)
…
0
votes
1answer
41 views
COCOA Objects Allocation/Deallocation + Memory Optimization
Hello friends,
Ah.. We've developed a good iPhone application. Now, 'm passing through last phases of it, i.e. profiling it and I've encountered few problems. Application has few leaks and objects …
0
votes
2answers
56 views
UIView isn’t released. Calling delegate with self, and using UIView commitAnimations adds retain count
I have a view that is added as a subview in a viewcontroller. The subview has delegates methods and the viewcontroller is assinged as its delegate. The subview has a animation and calls a delegate …
1
vote
3answers
68 views
How to access physical memory in linux from userspace ?
Hi, I have a physical memory address, which driver provide me through ioctl. How can I access it in my application in linux.
2
votes
3answers
74 views
Memory leak on return object
I have a hard time grasping this memory leak in my code. Basically it's returning an object containing a object. here's the following code:
-(id) getOptions {
FileManager *file = [[FileManager …
1
vote
2answers
23 views
JVM and CLR allocation optimization
Do the JVM and .NET VM allocate objects on the stack when it is obvious to the runtime that an objects lifetime is limited to a certain scope?
