active questions tagged memory-management - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T22:23:36Z http://stackoverflow.com/feeds/tag/memory-management http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1553382/-pod-freeing-memory-is-delete-equal-to-delete 1 ( POD )freeing memory : is delete[] equal to delete ? singh 2009-10-12T08:27:44Z 2009-12-17T19:41:26Z <pre><code>IP_ADAPTER_INFO *ptr=new IP_ADAPTER_INFO[100]; </code></pre> <p>if i free using </p> <pre><code>delete ptr; </code></pre> <p>will it lead to memory leak, if not then why ?</p> <p>This is disassembly code generated by VS2005</p> <pre><code>**delete ptr;** 0041351D mov eax,dword ptr [ptr] 00413520 mov dword ptr [ebp-0ECh],eax 00413526 mov ecx,dword ptr [ebp-0ECh] 0041352C push ecx 0041352D call operator delete (4111DBh) 00413532 add esp,4 **delete []ptr;** 00413535 mov eax,dword ptr [ptr] 00413538 mov dword ptr [ebp-0E0h],eax 0041353E mov ecx,dword ptr [ebp-0E0h] 00413544 push ecx 00413545 call operator delete[] (4111E5h) 0041354A add esp,4 </code></pre> http://stackoverflow.com/questions/1910633/are-spinlocks-a-good-choice-for-a-memory-allocator 6 Are spinlocks a good choice for a memory allocator? dsimcha 2009-12-15T21:46:54Z 2009-12-17T16:09:06Z <p>I've suggested to the maintainers of the D programming language runtime a few times that the memory allocator/garbage collector should use spinlocks instead of regular OS critical sections. This hasn't really caught on. Here are the reasons I think spinlocks would be better:</p> <ol> <li>At least in synthetic benchmarks that I did, it's several times faster than OS critical sections when there's contention for the memory allocator/GC lock. Edit: Empirically, using spinlocks didn't even have measurable overhead in a single-core environment, probably because locks need to be held for such a short period of time in a memory allocator.</li> <li>Memory allocations and similar operations usually take a small fraction of a timeslice, and even a small fraction of the time a context switch takes, making it silly to context switch in the case of contention.</li> <li>A garbage collection in the implementation in question stops the world anyhow. There won't be any spinning during a collection.</li> </ol> <p>Are there any good reasons <strong>not</strong> to use spinlocks in a memory allocator/garbage collector implementation?</p> http://stackoverflow.com/questions/1919813/why-does-the-outofmemoryexception-get-thrown 0 Why does the OutOfMemoryException get thrown? muthukumarm 2009-12-17T06:16:01Z 2009-12-17T07:05:22Z <p>What reasons cause the .NET runtime to throw an OutOfMemoryException? The garbage collector's job is to clean up memory and free memory as necessary before allocating objects; why would it appear to be out of memory?</p> http://stackoverflow.com/questions/1913628/local-object-scope-and-memory-management-in-cocoa 1 Local object scope and memory management in Cocoa massimoperi 2009-12-16T10:09:38Z 2009-12-16T16:06:57Z <p>I'm new to Objective-C and Cocoa programming, so in my first sample projects I've always adopted the statement of releasing/autoreleasing all my allocated and copied objects.</p> <p>But what about local objects allocated inside methods? Let me write some sample code, here is my object interface:</p> <pre><code>@interface MySampleObject : NSObject { NSMenu *mySampleMenu; } - (void)setupMenu; @end </code></pre> <p>Let's now assume that in the setupMenu implementation i create a local menu item to be added to the menu, like follows:</p> <pre><code>- (void)setupMenu { NSMenuItem *myLocalItem = [[NSMenuItem alloc] init]; [myLocalItem setTitle:@"The Title"]; [mySampleMenu addItem:myLocalItem]; [myLocalItem release]; } </code></pre> <p>The question is: should myLocalItem be released after it has been added to the menu or can I assume that the scope of the object is local so there's no need to manually release since it will be automatically released?</p> http://stackoverflow.com/questions/1181616/webbrowser-control-and-memory-problems 1 webbrowser control and memory problems acidzombie24 2009-07-25T08:43:22Z 2009-12-16T15:00:03Z <p>My app is using roughly 300mb. I checked all objects i created with new and wrote a using around it if it had a dispose interface. Now with the web browser control i visit rougly 450 pages all which have ads on them and many use ajax request so for sure more then 1k request.</p> <p>Why is the app taking that much memory? i did notice i can click the page and hit back to visit a previous page but AFAIK IE wouldnt use up that many MBs after visiting that many pages (i dont want to hit 450 unique pages by hand to check). So why do i have these memory issues?</p> http://stackoverflow.com/questions/1913343/how-could-pairing-new-with-delete-possibly-lead-to-memory-leak-only 4 How could pairing new[] with delete possibly lead to memory leak only? sharptooth 2009-12-16T09:15:12Z 2009-12-16T10:21:25Z <p>First of all, using <code>delete</code> for anything allocated with <code>new[]</code> is undefined behaviour according to C++ standard.</p> <p>In Visual C++ 7 such pairing can lead to one of the two consequences.</p> <p>If the type new[]'ed has trivial constructor and destructor VC++ simply uses <code>new</code> instead of <code>new[]</code> and using <code>delete</code> for that block works fine - <code>new</code> just calls "allocate memory", <code>delete</code> just calls "free memory".</p> <p>If the type new[]'ed has a non-trivial constructor or destructor the above trick can't be done - VC++7 has to invoke exactly the right number of destructors. So it prepends the array with a <code>size_t</code> storing the number of elements. Now the address returned by <code>new[]</code> points onto the first element, not onto the beginning of the block. So if <code>delete</code> is used it only calls the destructor for the first element and the calls "free memory" with the address different from the one returned by "allocate memory" and this leads to some error indicaton inside HeapFree() which I suspect refers to heap corruption.</p> <p>Yet every here and there one can read false statements that using <code>delete</code> after <code>new[]</code> leads to a memory leak. I suspect that anything size of heap corruption is much more important than a fact that the destructor is called for the first element only and possibly the destructors not called didn't free heap-allocated sub-objects.</p> <p>How could using <code>delete</code> after <code>new[]</code> possibly lead only to a memory leak on some C++ implementation?</p> http://stackoverflow.com/questions/1907668/what-do-i-need-to-know-about-memory-in-c 8 What do I need to know about memory in C++? Christopher W. Allen-Poole 2009-12-15T14:01:18Z 2009-12-16T00:34:54Z <p>I've been doing my best to learn C++ but my previous training will fall short in one major issue: memory management. My primary languages all have automatic garbage collection, so keeping track of everything has never really been necessary. I've tried reading up on memory management in C++ online, but I have this shaking suspicion that I am strill missing something.</p> <p>So, here's a multi-part question:</p> <ul><li>What is the bare minimum I need to know about memory management? (or, where do I go to find that out)?</li><li>Where do I go for intermediate and advanced knowledge/tutorials/etc (once I am done with the basics)?</li><br/>More specifically:<li>What is the performance difference between pointers and references?</li><li>I've heard that in loops, you need to make sure that you call <code>delete</code> on any new pointers before the loop re-iterates. Is this correct? Do you need to do something with references?</li><li>What are some classic examples of memory leaks?</li><li>What do I need to know about the following (and will I ever realistically need to use them -- if so, where?): <ul><li><code>malloc</code></li><li><code>free</code></li><li><code>calloc</code></li><li><code>realloc</code></li></ul></li></ul> <p><strong>*******************</strong> UPDATE <strong>***************</strong></p> <p>This is to address a reference to lmgtfy in comment one (by Ewan). If you start reading the information which is available there, it is not useful to the beginner. It is great theory, I think, but it is neither pertinent or useful to this question.</p> http://stackoverflow.com/questions/240212/what-is-the-difference-between-new-delete-and-malloc-free 20 What is the difference between new/delete and malloc/free? MrDatabase 2008-10-27T15:05:30Z 2009-12-15T22:53:40Z <p>What is the difference between new/delete and malloc/free?</p> <p>Related (duplicate?): <a href="http://stackoverflow.com/questions/184537/in-what-cases-do-i-use-malloc-vs-new">In what cases do I use malloc vs new?</a></p> http://stackoverflow.com/questions/1910669/if-i-have-a-variable-locally-declared-in-a-loop-that-creats-a-thread-is-it-safe 0 If I have a variable locally declared in a loop that creats a thread, is it safe to use that variable in the called thread, even after the next iteration of the loop takes place? Tom 2009-12-15T21:53:28Z 2009-12-15T22:04:30Z <p>I have a question about variable scope and memory management in C. I am writing a program that listens for a socket connection and then launches a new thread to handle that client. The main while() loop can launch many separate threads. My question is this:</p> <p>If I don't use dynamic memory allocation [no malloc()], and instead have a variable locally declared as shown below, is it safe to use that variable in the called thread, even after the next iteration of the loop takes place?</p> <pre><code>while(1) { // Accept new socket connection here // ... pthread_t pt; struct mypthreadargs args; rc = pthread_create(&amp;pt, NULL, handle_client, &amp;args); // The handle_client() function makes extensive use of the 'args' variable } </code></pre> <p>What happens to the <code>args</code> variable (and the <code>pt</code> variable, too, for that matter) after the thread has been created. Is the memory lost once the while() loop starts over, or is it safe to use them as I have?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1905336/structure-on-a-heap-memory 0 structure on a heap memory benjamin button 2009-12-15T05:25:25Z 2009-12-15T18:44:05Z <p>This question was recently asked to me in an interview for which i went confused!!</p> <p><code>"How do you initialize a structure in the heap memory ?"</code> could anybody please tell me the correct answer for this?</p> <p>btw:how exactly are stack and heap memory are different from each other? And looking about the above question some might also ask me about <code>how do you initialize a structure on a stack memory?</code>.</p> <p>may be this is a basic question or might be a wrong question too, but i am just curious to know!</p> <p>Could anybody please help?</p> http://stackoverflow.com/questions/1906523/is-memory-management-a-concern-with-asp-net-mvc 1 Is memory management a concern with asp.net mvc Pandiya Chendur 2009-12-15T10:33:41Z 2009-12-15T15:25:09Z <p>Hai guys,</p> <p>I want to know,is memory management a concern with asp.net mvc.. </p> <ul> <li>comparision of memeory management in both asp.net mvc and web forms by experts</li> </ul> http://stackoverflow.com/questions/1907561/why-array-values-in-java-is-stored-in-heap 2 Why array values in java is stored in heap? i2ijeya 2009-12-15T13:45:40Z 2009-12-15T13:57:12Z <p>Programing languages like C,C++ will not store array values in <strong>Heap</strong> rather it keeps the value in <strong>STACK</strong>. But in Java why there is a necessity to keep array values in heap?</p> http://stackoverflow.com/questions/1906445/whats-the-work-of-jdk-and-jre 4 Whats the work of JDK and JRE? i2ijeya 2009-12-15T10:19:27Z 2009-12-15T10:54:42Z <p>Hi, I have a confusion that what JRE is doin on the Background and what does the JDK doing.</p> http://stackoverflow.com/questions/1880133/how-to-allocate-memory-in-another-process-for-windows-mobile 0 How to allocate memory in another process for windows mobile Serafeim 2009-12-10T10:41:16Z 2009-12-15T08:39:14Z <p>I'd like to read the contents of another process listview control in windows mobile. To do this, I need a pointer to some free memory to that process in order to put the values there (and then read them from my process). This can be done in normal Windows or Win32 with the <a href="http://msdn.microsoft.com/en-us/library/aa909179.aspx" rel="nofollow">VirtualAllocEx function</a>. </p> <p>However, this function is not supported in windows mobile ! Can you recommend me a way to allocate that memory? </p> http://stackoverflow.com/questions/1898823/unit-testing-c-library-memory-management 0 Unit testing C library, memory management. Nicolas Goy 2009-12-14T03:56:50Z 2009-12-14T04:11:12Z <p>I am working on a quite large C library that doesn't have any tests now. As the API starts to be final, I'd like to start writing unit tests.</p> <p>Nearly all my functions acts on the first parameter (a structure).</p> <p>The naive approach to unit test is to have the pre function call structure in a known state, call the function, and then compare the pre call structure with the expected result.</p> <p>Now this works with structure composed of scalar types, but as for allocated memory, I was wondering what kind of approach you were using.</p> <p>For example, imagine an image structure, when you do:</p> <pre><code>CreateImage(&amp;img, x, y); </code></pre> <p>you expect the img->x to be x, img->y to be y and img->pixels to be a pointer to something big enough to hold <code>x * y * sizeof(pixel)</code>.</p> <p>Checking for the first two is trivial, but what about the img->pixels? I don't mean to check if the malloc call was successful, as I can [overload] malloc, but I want to know if malloc was called properly.</p> <p>This is especially important in case like that:</p> <pre><code>CreateImage(*img, x, y) { img-&gt;x = x; img-&gt;y = y; /* do something, dhoo, that something is broken and modify x or y */ img-&gt;pixels = malloc(x * y * sizeof(pixel)); /* wrong allocation size */ if(!img-&gt;pixels) error("no memory"); } </code></pre> <p>I hope my question is clear.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1884684/how-important-is-it-to-check-return-values-when-using-the-python-c-api 2 How important is it to check return values when using the Python C API? Javier Badia 2009-12-10T22:55:33Z 2009-12-13T14:07:17Z <p>It seems that everytime I call a function that returns a PyObject*, I have to add four lines of error checking. Example:</p> <pre><code>py_fullname = PyObject_CallMethod(os, "path.join", "ss", folder, filename); if (!py_fullname) { Py_DECREF(pygame); Py_DECREF(os); return NULL; } image = PyObject_CallMethodObjArgs(pygame, "image.load", py_fullname, NULL); Py_DECREF(py_fullname); if (!image) { Py_DECREF(pygame); Py_DECREF(os); return NULL; } image = PyObject_CallMethodObjArgs(image, "convert", NULL); if (!image) { Py_DECREF(pygame); Py_DECREF(os); return NULL; } </code></pre> <p>Am I missing something? Is there a better way to do this? This has the added problem that I may forget all the stuff I'm supposed to Py_DECREF().</p> http://stackoverflow.com/questions/786009/iphone-memory-management-with-uiimage 0 iPhone Memory Management with UIImage Avi Kashyap 2009-04-24T14:12:31Z 2009-12-13T01:00:01Z <pre><code>- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage: (UIImage *)image editingInfo:(NSDictionary *)editingInfo { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; [self.pickerTrigger setImage:image]; [self.button setTitle:@" " forState:UIControlStateNormal]; [self.button setTitle:@" " forState:UIControlStateSelected]; [self.button setTitle:@" " forState:UIControlStateHighlighted]; CGSize oldSize = [image size]; CGFloat width = oldSize.width; CGFloat height = oldSize.height; CGSize targetSize = CGSizeMake(320.0, 400.0); CGFloat targetWidth = targetSize.width; CGFloat targetHeight = targetSize.height; CGFloat scaleFactor = 0.0; CGFloat scaledWidth = targetWidth; CGFloat scaledHeight = targetHeight; CGPoint thumbnailPoint = CGPointMake(0.0,0.0); if (CGSizeEqualToSize(oldSize, targetSize) == NO) { CGFloat widthFactor = targetWidth / width; CGFloat heightFactor = targetHeight / height; if (widthFactor &gt; heightFactor) scaleFactor = widthFactor; else scaleFactor = heightFactor; scaledWidth = width * scaleFactor; scaledHeight = height * scaleFactor; if (widthFactor &gt; heightFactor) { thumbnailPoint.y = (targetHeight - scaledHeight) * 0.5; } else if (widthFactor &lt; heightFactor) { thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5; } } UIGraphicsBeginImageContext(targetSize); CGRect thumbnailRect = CGRectZero; thumbnailRect.origin = thumbnailPoint; thumbnailRect.size.width = scaledWidth; thumbnailRect.size.height = scaledHeight; [image drawInRect:thumbnailRect]; &gt; self.selectedImage = UIGraphicsGetImageFromCurrentImageContext(); NSLog([NSString stringWithFormat:@"After getting from DB %d", [selectedImage retainCount]]); UIGraphicsEndImageContext(); [pool release]; [picker dismissModalViewControllerAnimated:YES]; } </code></pre> <p>the variable selectedImage has been declared as a retained property in the interface file. As you can guess I thumbnail an image to store it in selectedImage. then I reuse it in another funtion and release it in the dealloc funtion.</p> <p>Instruments shows that the object does get deallocated but memory keeps increasing? Does it mean that releasing objects doesn't necessarily free the memory?</p> <p>I face this kinda thing too often with UIImages? Any guesses?</p> <p>I have added [selectedImage release] to the (void)dealloc function which does get called , retain count becomes zero and the object does get deallocated. But some memory is allocated (I believe while using UIGraphicsGetImageFromCurrentImageContext(); I guess) which is not freed. I add 4-5 Images the memory reaches a whopping 117 MB in the simulator then it drops back to 48 MB in the simulator. But the app crashes on the iPhone. Should I take some other approach while creating the image?? </p> http://stackoverflow.com/questions/1890824/iphone-memory-management-question-retaining-iterated-uitableviewcells 2 iPhone memory management question: retaining iterated UITableViewCells? Greg Maletic 2009-12-11T20:57:34Z 2009-12-11T21:06:10Z <p>I'm still shaky on the subtler aspects of memory management, and I have a question about the aggressive retaining/releasing I've seen in some sample code. Specifically:</p> <pre><code>- (void)loadContentForVisibleCells { NSArray *cells = [self.tableView visibleCells]; [cells retain]; for (int i = 0; i &lt; [cells count]; i++) { // Go through each cell in the array and call its loadContent method if it responds to it. FlickrCell *flickrCell = (FlickrCell *)[[cells objectAtIndex: i] retain]; [flickrCell loadImage]; [flickrCell release]; flickrCell = nil; } [cells release]; } </code></pre> <p>Why the [retain/release] cycle on the FlickrCell (lines 8 &amp; 10)? The cell is in an NSArray which by definition has retained its contents (I think...?), and the NSArray itself is retained. Why would this additional retain be necessary?</p> <p>Furthermore, why the retain on the NSArray returned by [self.tableView visibleCells] (line 3)? Isn't the array guaranteed to be around for the duration of this method call?</p> <p>Thanks very much.</p> http://stackoverflow.com/questions/1890041/avoid-making-copies-with-vectors-of-vectors 0 Avoid making copies with vectors of vectors Tim Rupe 2009-12-11T18:37:40Z 2009-12-11T19:43:14Z <p>I want to be able to have a vector of vectors of some type such as:</p> <pre><code>vector&lt;vector&lt;MyStruct&gt; &gt; vecOfVec; </code></pre> <p>I then create a vector of MyStruct, and populate it.</p> <pre><code>vector&lt;MyStruct&gt; someStructs; // Populate it with data </code></pre> <p>Then finally add someStructs to vecOfVec;</p> <pre><code>vecOfVec.push_back(someStructs); </code></pre> <p>What I want to do is avoid having the copy constructor calls when pushing the vector. I know this can be accomplished by using a vector of pointers, but I'd like to avoid that if possible.</p> <p>One strategy I've thought of seems to work, but I don't know if I'm over-engineering this problem.</p> <pre><code>// Push back an empty vector vecOfVec.push_back(vector&lt;MyStruct&gt;()); // Swap the empty with the filled vector (constant time) vecOfVec.back().swap(someStructs); </code></pre> <p>This seems like it would add my vector without having to do any copies, but this seems like something a compiler would already be doing during optimization.</p> <p>Do you think this is a good strategy?</p> <p><b>Edit:</b> Simplified my swap statement due to some suggestions.</p> http://stackoverflow.com/questions/1253388/how-to-analyze-memory-fragmentation-in-java 1 How to analyze memory fragmentation in java? Vitaly 2009-08-10T06:33:48Z 2009-12-11T12:18:34Z <p>We experience several minutes lags in our server. Probably they are triggered by "stop the world" garbage collections. But we use concurrent mark and sweep GC (-XX:+UseConcMarkSweepG) so, I think, these pauses are triggered by memory fragmentation of old generation. </p> <p>How can memory fragmentation of old generation be analyzed? Are there any tools for it?</p> <p>Lags happen every hour. Most time they are about 20 sec, but sometimes - several minutes.</p> http://stackoverflow.com/questions/1886708/c-fread-jibberish 2 c++ fread jibberish kelton52 2009-12-11T08:54:16Z 2009-12-11T10:34:59Z <p>For some reason my buffer is getting filled with jibberish, and I'm not sure why. I even checked my file with a hex editor to verify that my characters are saved in a 2 byte unicode format. I'm not sure what's wrong.</p> <h3>[on file open]</h3> <pre><code>fseek(_file_pointer, 0, SEEK_END); this-&gt;_length = ftell(this-&gt;_file_pointer) / sizeof(chr); </code></pre> <h3>[Main]</h3> <pre><code>//there is a reason for this, I just //didn't include the code that tells why typedef wchar_t chr; chr *buffer = (chr*)malloc(f-&gt;_length*sizeof(chr)); if(buffer == NULL)return; memset(buffer,0,f-&gt;_length*sizeof(chr)); f-&gt;Read_Whole_File(buffer); f-&gt;Close(); free(buffer); </code></pre> <h3>[Read_Whole_File]</h3> <pre><code>void Read_Whole_File(chr *buffer) { if(buffer == NULL) { this-&gt;_IsError = true; return; } fseek(this-&gt;_file_pointer, 0, SEEK_SET); int a = sizeof(buffer[0]);//for debugging purposes fread(buffer, a, _length, this-&gt;_file_pointer); } </code></pre> http://stackoverflow.com/questions/1886743/c-fread-jibberishrepost-sorry 0 c++ fread jibberish(repost, sorry) [closed] kelton52 2009-12-11T09:03:25Z 2009-12-11T09:09:02Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1886708/c-fread-jibberish">c++ fread jibberish</a> </p> </blockquote> <p>For some reason my buffer is getting filled with jibberish, and I'm not sure why. I even checked my file with a hex editor to verify that my characters are saved in a 2 byte unicode format. I'm not sure what's wrong.</p> <h2>btw I left some error handing and what not from this post</h2> <h3>[on file open]</h3> <pre><code>fseek(_file_pointer, 0, SEEK_END); this-&gt;_length = ftell(this-&gt;_file_pointer) / sizeof(chr); </code></pre> <h3>[Main]</h3> <pre><code>//there is a reason for this, I just //didn't include the code that tells why typedef wchar_t chr; chr *buffer = (chr*)malloc(f-&gt;_length*sizeof(chr));//error handling truncated memset(buffer,0,f-&gt;_length*sizeof(chr)); f-&gt;Read_Whole_File(buffer); f-&gt;Close(); free(buffer); </code></pre> <h3>[Read_Whole_File]</h3> <pre><code>void Read_Whole_File(chr *buffer) { if(buffer == NULL) { this-&gt;_IsError = true; return; } fseek(this-&gt;_file_pointer, 0, SEEK_SET); int a = sizeof(buffer[0]);//for debugging purposes fread(buffer, a, _length, this-&gt;_file_pointer); } </code></pre> http://stackoverflow.com/questions/1880984/when-are-variables-removed-from-memory-in-c 3 When are variables removed from memory in C++? unknown (yahoo) 2009-12-10T13:31:31Z 2009-12-11T09:07:11Z <p>I've been using C++ for a bit now. I'm just never sure how the memory management works, so here it goes:</p> <p>I'm first of all unsure how memory is unallocated in a function, ex:</p> <pre><code>int addTwo(int num) { int temp = 2; num += temp; return num; } </code></pre> <p>So in this example, would temp be removed from memory after the function ends? If not, how is this done. In C# a variable gets removed once its scope is used up. Are there also any other cases I should know about?</p> <p>Thanks</p> http://stackoverflow.com/questions/1886283/my-app-crashes-cant-understand-the-log 0 My app crashes : can't understand the log . hib 2009-12-11T06:52:53Z 2009-12-11T06:56:01Z <p>Hi all I am getting the following cause for the app crash :</p> <pre><code> Thu Dec 10 14:35:07 unknown MobileSafari[4272] &lt;Warning&gt;: Safari got memory level warning, killing all documents except active. Thu Dec 10 14:35:10 unknown ReportCrash[4279] &lt;Notice&gt;: Formulating crash report for process MyApp[4278] Thu Dec 10 14:35:10 unknown com.apple.launchd[1] &lt;Warning&gt;: (UIKitApplication:com.mycomp.MyAppAdhoc[0x5be6]) Job appears to have crashed: Segmentation fault Thu Dec 10 14:35:10 unknown SpringBoard[25] &lt;Warning&gt;: Application 'MyApp' exited abnormally with signal 11: Segmentation fault </code></pre> <p>Can anybody identify what this error says ?</p> http://stackoverflow.com/questions/1620536/memory-mapped-files-reamain-in-physical-memory 2 memory mapped files reamain in physical memory Meidan Alon 2009-10-25T10:20:47Z 2009-12-11T02:40:25Z <p>I have a process that uses a lot of memory mapped files.<br /> Problem is that those files are kept in physical memory, even when the machine is low on memory, and other processes require this memory.</p> <p>I've tried using <a href="http://msdn.microsoft.com/en-us/library/ms686234%28VS.85%29.aspx" rel="nofollow">SetProcessWorkingSetSize</a> to limit the process working set, but it doesn't help, the process' working set keeps growing over the max value.</p> <p>Is there a better way to limit the process' working set?<br /> Can I change Windows' heuristcs for paging memory mapped files?</p> http://stackoverflow.com/questions/1201168/what-is-fadvise-madvise-equivalent-on-windows 1 What is fadvise/madvise equivalent on windows ? Steve Schnepp 2009-07-29T15:36:42Z 2009-12-10T23:27:50Z <p>On UNIX, I can, for example, tell the OS that the mapping will be needed in the future with <code>posix_fadvise(POSIX_FADV_WILLNEED)</code>. It will then read-ahead the data if it feels so.</p> <p>How to tell the access intend to Windows ?</p> http://stackoverflow.com/questions/1881439/java-me-out-of-memory 1 Java ME out of memory Milan 2009-12-10T14:44:56Z 2009-12-10T21:33:25Z <p>Hello everybody,</p> <p>Im making Java me application for Symbian S60 5th edition and I have problem with the memory. After some time of running the app I recieve the out of memory exception. So,Im getting images from GoogleMaps(by the integrated GPS in nokia 5800) and showing them.</p> <p>I have this implemented like this:</p> <ul> <li>class MIDlet with metod setForm()</li> <li>class Data which has thread that collects info about the coordinates, gets image from google maps, create new form, append the image, and call the method setForm(f) from the Midlet.</li> </ul> <p>Probable the <code>Display.setCurrent(Form f)</code> keeps references on the forms and like this the memory gets fast full. I tried with Canvas but it has some stupid UI(some circle and some 4 buttons) that I dont like.</p> <p>Any idea how to solve the problem?</p> <p>thanks in advanced,</p> <p>Milan</p> <p>PS: the code....</p> <ol> <li><p>In class MIDlet</p> <p>public void setInfo(Form f) { getDisplay().setCurrent(f); }</p></li> <li><p>in class TouristData which collect information about location and gets map image</p></li> </ol> <p>private attributes: private Form f=null; private ImageItem imageItem=null; private Image img = null;</p> <p>method locationUpdated which is called when recieve new location:</p> <pre><code>public void locationUpdated(LocationProvider provider,final Location location) { if (!firstLocationUpdate) { firstLocationUpdate = true; statusListener.firstLocationUpdateEvent(); } if(touristUI != null) { new Thread() { public void run() { if(location != null &amp;&amp; location.isValid()) { //lokacija je, prikaži! try { QualifiedCoordinates coord =location.getQualifiedCoordinates(); if(imageItem == null) { imageItem = new ImageItem(null,null,0,null); imageItem.setAltText("ni povezave"); f.append(imageItem); } else { img = googleConnector.retrieveStaticImage2(360,470, coord.getLatitude(), coord.getLongitude(), 16, "png32"); //z markerje imageItem.setImage(img); } }catch(Exception e) {} } else { } } }.start(); } } </code></pre> http://stackoverflow.com/questions/387075/how-can-a-program-have-a-high-virtual-byte-count-while-the-private-bytes-are-rela 2 How can a program have a high virtual byte count while the private bytes are relatively low on Windows 32-bit? Aaron K 2008-12-22T19:16:57Z 2009-12-10T20:16:22Z <p>I'm trying to get a better understanding of how Windows, 32-bit, calculates the virtual bytes for a program. I am under the impression that Virtual Bytes (VB) are the measure of how much of the user address space is being used, while the Private Bytes (PB) are the measure of actual committed and reserved memory on the system.</p> <p>In particular, I have a server program I am monitoring which, when under heavy usage, will climb up to the 3GB limit for VBs. Around the same time the PB climb as well, but then quickly drop down to around 1 GB as the usage drops. The PB tend to then stay low, around the 1 GB mark, but the VB stay up around the 3 GB mark. I do not have access to the source code, so I am just using the basic Windows performance counters to monitor all of this. From a programming point of view, what memory concept do I not understand that makes this all possible? Is there a good reference to learn more about this?</p> http://stackoverflow.com/questions/1881343/locate-bad-memory-access-on-solaris 4 Locate bad memory access on Solaris johannes 2009-12-10T14:29:15Z 2009-12-10T16:07:04Z <p>On Linux, FreeBSD and other systems I have <a href="http://www.youtube.com/watch?v=gd6vrpHh4f4" rel="nofollow">valgrind</a> for checking for memory errors like invalid reads and similar. I really love valgrind. Now I have to test code on Solaris/OpenSolaris and can't find a way to get information on invalid reads/writes in an as nice way (or better ;-)) as valgrind there.</p> <p>When searching for this on the net I find references to <a href="http://en.wikipedia.org/wiki/Libumem" rel="nofollow">libumem</a>, but I get only reports about memory leaks there, not invalid access. What am I missing?</p> http://stackoverflow.com/questions/1874354/a-dynamic-buffer-type-in-c 2 A dynamic buffer type in C++? Vilx- 2009-12-09T14:43:32Z 2009-12-09T17:11:39Z <p>I'm not exactly a C++ newbie, but I have had little serious dealings with it in the past, so my knowledge of its facilities is rather sketchy.</p> <p>I'm writing a quick proof-of-concept program in C++ and I need a dynamically sizeable buffer of binary data. That is, I'm going to receive data from a network socket and I don't know how much there will be (although not more than a few MB). I could write such a buffer myself, but why bother if the standard library probably has something already? I'm using VS2008, so some Microsoft-specific extension is just fine by me. I only need four operations:</p> <ul> <li>Create the buffer</li> <li>Write data to the buffer (binary junk, not zero-terminated)</li> <li>Get the written data as a char array (together with its length)</li> <li>Free the buffer</li> </ul> <p>What is the name of the class/function set/whatever that I need?</p> <p><strong>Added:</strong> Several votes go to <code>std::vector</code>. All nice and fine, but I don't want to push several MB of data byte-by-byte. The socket will give data to me in few-KB large chunks, so I'd like to write them all at once. Also, at the end I will need to get the data as a simple char*, because I will need to pass the whole blob along to some Win32 API functions unmodified.</p>