active questions tagged memory - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:04:35Z http://stackoverflow.com/feeds/tag/memory http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1806260/is-my-centos-dedicated-server-caching-disk-files-appropriately-or-not 0 Is my centOS dedicated server caching disk files appropriately, or not? peter 2009-11-27T00:23:40Z 2009-11-27T00:23:40Z <p>Here's the head of the top output from my centOS 5 server, at a moment with very low load. What I want to know is whether it is using its free memory wisely to cache files from disk. Of 2G of RAM, it seems to say 1G free - then it says also 600k cached and 40k buffers. Is the 1G free, or not? How much memory is used by memory as disk cache? If that free memory is really free, is there a way to tell linux to crank up and use that free memory? Thanks!!</p> <pre><code> top - 19:07:54 up 32 days, 15:59, 1 user, load average: 0.45, 1.10, 0.98 Tasks: 148 total, 3 running, 144 sleeping, 1 stopped, 0 zombie Cpu(s): 2.3%us, 0.3%sy, 0.0%ni, 97.0%id, 0.2%wa, 0.0%hi, 0.2%si, 0.0%st Mem: 2064728k total, 1064992k used, 999736k free, 39268k buffers Swap: 2096472k total, 92k used, 2096380k free, 668296k cached PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 30394 mysql 15 0 262m 58m 4816 S 2.0 2.9 1455:23 mysqld 20780 apache 16 0 53644 11m 7532 R 1.0 0.6 0:05.07 httpd 15795 apache 15 0 54520 22m 17m S 0.3 1.1 0:28.03 httpd 17941 apache 15 0 53960 13m 8972 S 0.3 0.7 0:38.01 httpd 19260 apache 20 0 53360 10m 7092 S 0.3 0.5 0:01.72 httpd 20777 apache 15 0 53676 11m 7732 S 0.3 0.6 0:04.84 httpd 20778 apache 19 0 53652 13m 9652 S 0.3 0.7 0:03.48 httpd 20830 root 15 0 2324 1052 796 R 0.3 0.1 0:02.89 top 1 root 15 0 2064 632 548 S 0.0 0.0 0:54.77 init 2 root RT -5 0 0 0 S 0.0 0.0 0:00.00 migration/0 3 root 34 19 0 0 0 S 0.0 0.0 0:00.89 ksoftirqd/0 </code></pre> http://stackoverflow.com/questions/1805256/django-python-pil-sorl-thumbnail-generation-in-bulk-memory-error 1 Django / Python / PIL / sorl-thumbnail generation in bulk - memory error Hoff 2009-11-26T19:13:35Z 2009-11-26T20:03:26Z <p>hi folks!</p> <p>I'm trying to bulk generate 4 thumnails for each of around 40k images with <a href="http://code.google.com/p/sorl-thumbnail/" rel="nofollow">sorl-thumbnail</a> for my django app. I iterate through all django objects with an ImageWithThumbnailsFieldFile, and then call its generate_thumbnails() function.</p> <p>This works fine, except that after a few hundred iterations, I run out of memory and my loop crashes with 'memory error'. Since sorl-thumbnail uses PIL to generate thumbs, it seems to be that PIL doesn't return all of the memory it used when generated a thumb.</p> <p>Does anybody how to avoid this problem, e.g. by forcing PIL to return the memory it no longer needs?</p> <p>my code simply looks like this:</p> <pre><code>all = Picture.objects.all() for i in all: i.image.generate_thumbnails() </code></pre> <p>The function generate-thumbnail starts <a href="http://code.google.com/p/sorl-thumbnail/source/browse/sorl/thumbnail/fields.py" rel="nofollow">here</a>, line 129. </p> <p>Thanks in advance for any advice!</p> <p>Martin</p> http://stackoverflow.com/questions/1798455/concurrency-how-does-shared-memory-vs-message-passing-handle-large-data-structur 7 Concurrency: how does shared memory vs message passing handle large data structures? wsorenson 2009-11-25T17:14:08Z 2009-11-26T16:15:03Z <p>In looking at Go and Erlang's approach to concurrency, I noticed that they both rely on message passing.</p> <p>This approach obviously alleviates the need for complex locks because there is no shared state.</p> <p>However, consider the case of many clients wanting parallel read-only access to a single large data structure in memory -- like a suffix array.</p> <p>My questions:</p> <ul> <li><p>Will using shared state be faster and use less memory than message passing, as locks will mostly be unnecessary because the data is read-only, and only needs to exist in a single location?</p></li> <li><p>How would this problem be approached in a message passing context? Would there be a single process with access to the data structure and clients would simply need to sequentially request data from it? Or, if possible, would the data be chunked to create several processes that hold chunks?</p></li> <li><p>Given the architecture of modern CPUS &amp; memory, is there much difference between the two solutions -- ie, can shared memory be read in parallel by multiple cores -- meaning there is no hardware bottleneck that would otherwise make both implementations roughly perform the same?</p></li> </ul> http://stackoverflow.com/questions/926779/net-resource-leak-gotchas 7 .NET Resource Leak Gotchas Thomas Bratt 2009-05-29T16:00:39Z 2009-11-26T12:20:48Z <p>There are several ways that developers can get caught out by unintentional resource leaks in .NET. I thought it would be useful to gather them in one place.</p> <p>Please add yours with one answer per item, so the best get voted up :)</p> http://stackoverflow.com/questions/1801113/clear-the-clr-memory 1 Clear the CLR memory Mark 2009-11-26T01:39:20Z 2009-11-26T06:18:02Z <p>Im running into a problem where the tool im using for development (a simulator tool) keeps throwing OutofMemoryException's, I know its not my app, because no matter what project im running, it happens.</p> <p>The only fix I have for it so far is to restart my PC, is there a way to flush/clear the CLR runtime so I dont have to restart my PC each time it happens?</p> http://stackoverflow.com/questions/1800168/accessing-protected-memory-in-c-via-com-interop 1 Accessing protected memory in C# via COM interop Lynxy 2009-11-25T21:43:13Z 2009-11-25T22:36:04Z <p>I am making a DLL "Plugin" for a EXE. The EXE calls a function in the DLL with an Object as a parameter, and goes from there.</p> <p>It all works fine and dandy until I split it to a new thread. This error happens</p> <blockquote> <p>Attempted to read or write protected memory. This is often an indication that other memory is corrupt.</p> </blockquote> <p>when executing this code on the object in the new thread:</p> <pre><code> protected object GetPropertyValue(object obj, string PropertyName) { return obj.GetType().InvokeMember(PropertyName, BindingFlags.GetProperty, null, obj, new object[] { }); } </code></pre> <p>The above is trying to access a property on a COM object. Changing the function to 'public' doesn't affect it. The code works just fine however if I'm using just one thread.</p> <p>What's happening is clear: The new thread does not have access to the variable in the EXE. How can I fix this? Not using a thread is not a viable option.</p> <p>Appreciate any help</p> http://stackoverflow.com/questions/1800025/whats-limiting-my-php-resources 0 What's limiting my PHP resources? bigmattyh 2009-11-25T21:19:58Z 2009-11-25T22:27:48Z <p>I'm having a problem getting more memory out of PHP.</p> <p>This is the error message:</p> <pre><code>Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 82 bytes) in ... </code></pre> <p>Yet:</p> <p>I've set memory_limit in the php.ini file to 32M:</p> <pre><code>memory_limit = 32M; </code></pre> <p>I've also tried to override it manually in the actual script:</p> <pre><code>ini_set('memory_limit', '32M'); </code></pre> <p>And -- here's where I'm lost -- I've confirmed via phpinfo() that this php.ini file is the actual ini file used, and the memory_limit seems to be set correctly. The line on memory_limit gives this:</p> <pre><code>memory_limit 32M 32M </code></pre> <p>So it would seem that everything is configured properly, but I'm only getting 20971520 bytes (~20M).</p> <p>Where else should I be looking to figure out where this limitation is being imposed?</p> <p><strong>EDIT:</strong> I'm running php under nginx/fastcgi, on Ubuntu 9.04 in a VPS. The php-cgi processes do seem to be a bit resource-hungry (RES=25m, VIRT=187m), but I have 10m of physical memory free and 500m of swap space free.</p> http://stackoverflow.com/questions/1662138/available-ram-on-shared-hosting-provider 0 Available RAM on shared hosting provider Hrvoje 2009-11-02T15:58:39Z 2009-11-25T16:19:19Z <p>I'm building business app that will hold somewhere between 50,000 to 150,000 companies. Each company (db row) is represented with 4-5 properties/columns (title, location,...). ORM is LINQ2SQL.</p> <p>I have to do some calculation, and for that I have lot of queries for specific company. Now, i go to db every time when i need something, and it produces 50-200 queries, depending on calculation complexy. I tried to put all companies to cache, and for 10,000 rows (companies) in db, it takes around 5,5MB of cache. In this scenario, I have only one query.</p> <p>This application will be on shared hosting server, so my resources are limited. I'm interested, what will happen if I try to load, let say 100,000 companies (rows, objects)? Or put that in cache?<br /> Is there any RAM limit that average hosting company give to ASP.NET application? Does it depend on dedicated Applcation Pool (I can put app to dedicated pool)?</p> <p><strong>Options are</strong>:<br /> - load whole table to c# objects. Id did some memory profiling, 10,000 objects needs 5MB RAM<br /> - query db to get referenced objects when needed.</p> <p><em>Task is</em>: for given company A, build tree of connected companies. </p> <p><strong>Table and columns</strong>:<br /> <em>Company</em> : IdCompany, Title, Address, Contact<br /> <em>CompanyConnection:</em> IdParentCompany, IdChildCompany</p> http://stackoverflow.com/questions/1013117/ssd-as-inline-cache 0 SSD as inline cache Tim Rupe 2009-06-18T14:52:32Z 2009-11-25T16:00:04Z <p>This may be slightly off-topic for a strictly programming site, but I'm interested in starting a software project or contributing to an existing project that can do what I'm proposing.</p> <p>Now that SSD storage is becoming more popular, I am more interested in using one in my destop computer. Since they are very expensive per Gigabyte compared to standard drives, I must limit the size of the drive. I want to maximize the use, but can't place all of my data on it.</p> <p>What I would like to do is use the SSD as an invisible inline cache to the rest of my data without having to explicitly store data on it. As data is read from my normal drive, it is cached to the SSD. All subsequent access to these files will retrieve it from the SSD, and any changes will propagate down to the slower drive. The user would never see the SSD in their list of drives.</p> <p>In this way, the first time you access a file, it may be slightly slower than usual, but from that point on, it will be much faster. Obviously, after a while the SSD will fill up, and less frequently used files can be released to make room.</p> <p>Are there any filesystems out there that allow for something like this, or is it feasible have a low-level driver do the work between the OS and the filesystem?</p> http://stackoverflow.com/questions/1352588/avaudioplayer-memory-leak 0 AVAudioPlayer memory leak Adi 2009-08-29T22:54:40Z 2009-11-25T11:46:05Z <p>Hi there,</p> <p>I'm stuck on some weird memory leak problem related to the AVAudioPlayer and I need help after trying everything that came to mind.</p> <p>Here is the short description of the problem - code appears right after. I initialize my player and start to play the sound track in an endless loop (and endless loop or one time play did not change the problem). Several seconds after the music started, I switch to another sound track, hence I create a new player, initialize it, release the old one (which is playing) and then set the new one in place and play it.</p> <p>At that point in time (right after I call the new Player - [Player play]) I get a memory leak (of 3.5Kb).</p> <p>I tried the following:</p> <ul> <li><p>Stop the old player and then release it - no effect</p></li> <li><p>Release the Player right after the play instruction - did not start playing</p></li> <li><p>Release twice the old player - crash</p></li> <li><p>Memory leak DOES NOT happen when I create and play the first Player! </p></li> </ul> <p>Also, in the reference it does say that the 'play' is async and so probably it increases the ref count by 1, but in this case, why didn't [Player stop] help?</p> <p>Thanks,</p> <p>Here are some parts of the code about how I use it:</p> <pre><code>- (void) loadAndActivateAudioFunction { NSBundle *mainBundle = [NSBundle mainBundle]; NSError *error; NSURL *audioURL = [NSURL fileURLWithPath:[mainBundle pathForResource: Name ofType: Type]]; AVAudioPlayer *player = [(AVAudioPlayer*) [AVAudioPlayer alloc] initWithContentsOfURL:audioURL error:&amp;error]; if (!player) { DebugLog(@"Audio Load Error: no Player: %@", [error localizedDescription]); DuringAudioPrep = false; return; } [self lock]; [self setAudioPlayer: player]; [self ActivateAudioFunction]; [self unlock]; </code></pre> <p>}</p> <pre><code>- (void) setAudioPlayer : (AVAudioPlayer *) player { if (Player) { if ([Player isPlaying] || Repeat) // The indication was off??? [Player stop]; [Player release]; } Player = player; </code></pre> <p>}</p> <pre><code>- (void) ActivateAudioFunction { [Player setVolume: Volume]; [Player setNumberOfLoops: Repeat]; [Player play]; DuringAudioPrep = false; </code></pre> <p>}</p> http://stackoverflow.com/questions/1794320/storing-java-objects-in-server-memory 0 Storing java objects in server memory ChrisH 2009-11-25T02:41:30Z 2009-11-25T03:19:12Z <p>Hi all,</p> <p>I got a java web project handling several objects (again containing n objects of type A (e.g. time and value) and m objects of type B (e.g. time and String array)). The web projects itself contains several servlets/jsps for visualization as well as some logic for data manipulation and currently runs on an Apache Tomcat. </p> <p>Is it possible to store the whole data in the servers (or most of the time: local) memory while the server is running? If the Tomcat is shut down, the data could be stored in a simple file, no restrictions there. On server startup, I just want to read in the files and write the objects to memory. How can I initiate the Tomcat to do so?</p> <p>The reason why I do not want to use an extra database is, that I want to deliver a zip file containing the tomcat including the deployed *.war file (as I don't want my prof getting stuck with tomcat server setup etc.)</p> <p>Thanks, ChrisH</p> http://stackoverflow.com/questions/1792304/memory-leak-on-return-object 2 Memory leak on return object Frank 2009-11-24T19:17:19Z 2009-11-24T21:25:09Z <p>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:</p> <pre><code>-(id) getOptions { FileManager *file = [[FileManager alloc] initWithFileName:@"optionsFile.dat"]; Options *options = [[Options alloc] init]; NSMutableArray *fileArray = [[NSMutableArray alloc] init]; fileArray = [file loadFile: @"optionsFile"]; if ([fileArray count] &gt; 0) { options = [fileArray objectAtIndex:0]; } [file release]; return options; } </code></pre> <p>I try to retain the returned object and releasing right after using:</p> <pre><code>id options = [[self getOptions] retain]; [options release]; </code></pre> <p>Basically, from the iphone documentation, i should have it autoreleased on my mutatbe array for filearray, but i am still getting a memory leak, anyone can shed some light on this, would be greatly appreciated.</p> <p>EDIT:</p> <p>I just added this to see if it would solve anything, but i am still leaking:</p> <pre><code>FileManager *file = [[FileManager alloc] initWithFileName:@"optionsFile.dat"]; NSMutableArray *fileArray = [file loadFile: @"optionsFile"]; Options *options = [fileArray objectAtIndex:0]; [file release]; return options; </code></pre> http://stackoverflow.com/questions/1784522/how-can-the-physical-ram-size-be-determined-in-linux-programatically 2 How can the physical RAM size be determined in Linux programatically ? vivekian2 2009-11-23T17:01:58Z 2009-11-24T03:11:27Z <p>On the command line this can be found out using the 'free' utility and 'cat /proc/meminfo'. What would be the different ways to find out the physical RAM size in Linux programatically for a : </p> <ol> <li>Userspace Application</li> <li>Kernel Module </li> </ol> <p>What API calls are available ? </p> http://stackoverflow.com/questions/1768165/java-poi-hssf-memory-handling-question 0 Java POI HSSF Memory Handling Question Maheswar 2009-11-20T03:29:32Z 2009-11-24T00:21:24Z <p>I have a design question on how to design parsing a large excel file say 1000 x 100 Rows, and about 10 tabs.</p> <p>Each Tab having a set of records with primary key as the first col. but these could be repeted in different tabs and each does not have the same set of primary keys.</p> <ol> <li><p>Read a single primary key and form a java object with all the attributes spread across multiple tabs.</p></li> <li><p>Read tab by tab, and process the record</p></li> </ol> <p>In terms of how Memory is handled in HSSF Java API.</p> <p>Thanks in Advance</p> http://stackoverflow.com/questions/795724/is-there-any-advantage-to-having-more-than-16gb-ram-on-a-windows-dev-machine 5 Is there any advantage to having more than 16gb ram on a Windows Dev machine? Robert Kozak 2009-04-27T23:51:04Z 2009-11-23T20:34:17Z <p>Assuming a machine (Dual Quad Core Xeon (2.26GHz) with 24GB RAM) running Windows Server 2008 and Hyper-V. How many VMs can I expect to run at the same time with good performance.</p> <p>Is this overkill? Can you really have too much RAM?</p> <p>Assuming 2GB per VM thats around 16GB for the VMs with 8GB left over for the Main OS and Hyper-V. </p> <p>Sound about right?</p> <p><hr /></p> <h3>Edit:</h3> <p>Tried to make the question sound less like bragging. Was never my intention. Its a hard question to write. </p> http://stackoverflow.com/questions/1749400/average-php-memory-usage-per-request 0 Average php memory usage per request ? Oguz 2009-11-17T14:53:27Z 2009-11-23T19:33:06Z <ol> <li><p>What is your average php memory usage per request . I know lots of people will say that php memory usage depends on the application , but i just want to get general idea about your data.I just created simple php framework so i want to know that do i use needless memory or it is normal . </p></li> <li><p>Actually , the interesting point is about my database class. I have a database class which is part of framework. For example , i have an albums table in database and albums have child objects which are songs . When i select albums from database , my database class automatically find child objects and get the data about them form database. So when this process occur , database class consumes around 1mb memory . If it is too much or you have an different method for this process please share . </p></li> </ol> http://stackoverflow.com/questions/1466720/how-to-force-javamail-to-clear-its-message-cache 1 How to force Javamail to clear its message cache? erotsppa 2009-09-23T15:25:29Z 2009-11-23T12:00:56Z <p>I'm running a server that uses Javamail. It has a count listener with IMAP's IDLE, such that when a new mail comes in, certain piece of code is executed. The list of new message is given to my listener as a parameter. I read the information off it and be done with it. All is good except my server leaks a lot of memory!! I did a heap dump and found that the class [Lcom.sun.mail.imap.IMAPMessage is using a lot of memory. It seems an array of IMAPMessage is referenced by the object com.sun.mail.imap.MessageCache.</p> <p>Is there some caching going on? I don't need to access those messages ever again except for the first time it comes in. How do I force the cache to clear? How can I stop javamail from leaking? </p> http://stackoverflow.com/questions/1781715/my-software-is-consuming-lot-of-memory-any-tools-thatll-help-me-in-knowing-what 0 My software is consuming lot of memory. Any tools that'll help me in knowing whats causing it? claws 2009-11-23T08:08:09Z 2009-11-23T08:23:14Z <p>The software I wrote (C#, .NET, VS2008) does some simple image processing. I operates on the single image. Surprisingly its consuming more than 150MB which should not be the case.</p> <p>I want to know whats making it use this much of resources. Are there any tools that will help?</p> http://stackoverflow.com/questions/823661/explicitly-freeing-memory-in-c 5 Explicitly freeing memory in c# Chris 2009-05-05T06:56:42Z 2009-11-23T04:32:26Z <p>Hi, I've create a c# application which uses up 150mb of memory (private bytes), mainly due to a big dictionary:</p> <pre><code>Dictionary&lt;string, int&gt; Txns = new Dictionary&lt;string, int&gt;(); </code></pre> <p>I was wondering how to free this memory up. I've tried this:</p> <pre><code>Txns = null; GC.Collect(); </code></pre> <p>But it doesn't seem to make much of a dent in my private bytes - they drop from say 155mb to 145mb. Any clues?</p> <p>Thanks</p> <p>-edit-</p> <p>Okay i'm having more luck with this code (it gets the private bytes down to 50mb), but why?</p> <pre><code>Txns.Clear(); // &lt;- makes all the difference Txns = null; GC.Collect(); </code></pre> <p>-edit-</p> <p>Okay for everyone who says 'dont use gc.collect', fair enough (i'm not going to debate that, other than saying you can see my C background coming through), but it doesn't really answer my question: Why does the garbage collector only free the memory if i clear the transaction list first? Shouldn't it free the memory anyway, since the dictionary has been dereferenced?</p> http://stackoverflow.com/questions/1382608/uiimagewritetosavedphotosalbum-showing-memory-leak-with-iphone-connected-to-instr 0 UIImageWriteToSavedPhotosAlbum showing memory leak with iPhone connected to Instruments unknown (google) 2009-09-05T06:09:47Z 2009-11-22T23:24:27Z <p>Hi,</p> <p>I'm using version 3.0.1 of the SDK.</p> <p>With the iPhone connected to Instruments I'm getting a memory leak when I call UIImageWriteToSavedPhotosAlbum.</p> <p>Below is my code:</p> <pre><code> NSString *gnTmpStr = [NSString stringWithFormat:@"%d", count]; UIImage *ganTmpImage = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:gnTmpStr ofType:@"jpg"]]; // Request to save the image to camera roll UIImageWriteToSavedPhotosAlbum(ganTmpImage, self, @selector(imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:), nil); </code></pre> <p>and the selector method</p> <pre><code> - (void)imageSavedToPhotosAlbum:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo { NSString *message; NSString *title; if (!error) { title = @"Wallpaper"; message = @"Wallpaper Saved"; } else { title = @"Error"; message = [error description]; } UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:message delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; [alert release]; } </code></pre> <p>Am I forgetting to release something once the image has been saved and the selector method imageSavedToPhotosAlbum is called? Or is there a possible known issue with UIImageWriteToSavedPhotosAlbum?</p> <p>Here is the stack trace from Instruments:</p> <pre>Leaked Object: GeneralBlock-3584 size: 3.50 KB 30 MyApp start 29 MyApp main /Users/user/Desktop/MyApp/main.m:14 28 UIKit UIApplicationMain 27 UIKit -[UIApplication _run] 26 GraphicsServices GSEventRunModal 25 CoreFoundation CFRunLoopRunInMode 24 CoreFoundation CFRunLoopRunSpecific 23 GraphicsServices PurpleEventCallback 22 UIKit _UIApplicationHandleEvent 21 UIKit -[UIApplication sendEvent:] 20 UIKit -[UIWindow sendEvent:] 19 UIKit -[UIWindow _sendTouchesForEvent:] 18 UIKit -[UIControl touchesEnded:withEvent:] 17 UIKit -[UIControl(Internal) _sendActionsForEvents:withEvent:] 16 UIKit -[UIControl sendAction:to:forEvent:] 15 UIKit -[UIApplication sendAction:toTarget:fromSender:forEvent:] 14 UIKit -[UIApplication sendAction:to:from:forEvent:] 13 CoreFoundation -[NSObject performSelector:withObject:withObject:] 12 UIKit -[UIBarButtonItem(Internal) _sendAction:withEvent:] 11 UIKit -[UIApplication sendAction:to:from:forEvent:] 10 CoreFoundation -[NSObject performSelector:withObject:withObject:] 9 MyApp -[FlipsideViewController svPhoto] /Users/user/Desktop/MyApp/Classes/FlipsideViewController.m:218 8 0x317fa528 7 0x317e3628 6 0x317e3730 5 0x317edda4 4 0x3180fc74 3 Foundation +[NSThread detachNewThreadSelector:toTarget:withObject:] 2 Foundation -[NSThread start] 1 libSystem.B.dylib pthread_create 0 libSystem.B.dylib malloc</pre> <p>I did a test with a new project and only added this code below in the viewDidLoad: </p> <pre><code>NSString *gnTmpStr = [NSString stringWithFormat:@"DefaultTest"]; UIImage *ganTmpImage = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:gnTmpStr ofType:@"png"]]; // Request to save the image to camera roll UIImageWriteToSavedPhotosAlbum(ganTmpImage, nil, nil, nil); </code></pre> <p>The same leak shows up right after the app loads</p> <p>Thank you for the help.</p> <p>Bryan</p> http://stackoverflow.com/questions/1765351/strange-iphone-sdk-sqlite-memory-leak 0 strange iphone sdk sqlite memory leak Andy 2009-11-19T18:08:57Z 2009-11-22T20:44:06Z <p>Hi guys, I have a very strange memory leak problem, it seems that sqlite3_step is doing some nasty stuff :|</p> <p>I spent almost 4 hours trying to fix this but no luck till now :(</p> <p>Here it is the code:</p> <pre><code>[dbList removeAllObjects]; sqlite3_stmt *statement = nil; const char *sql = "SELECT * FROM dbs ORDER by rowOrder;"; if (sqlite3_prepare_v2(dbHandler, sql, -1, &amp;statement, NULL) == SQLITE_OK) { while (sqlite3_step(statement) == SQLITE_ROW) { DatabaseEntry *entry = [[DatabaseEntry alloc] init]; entry.databaseID = sqlite3_column_int(statement, 0); entry.databaseTitle = [NSString stringWithFormat:@"%s", (char *)sqlite3_column_text(statement, 1)]; entry.databaseProtected = sqlite3_column_int(statement, 3); entry.databaseFileName = [NSString stringWithFormat:@"%s", (char *)sqlite3_column_text(statement, 2)]; entry.databaseOrder = sqlite3_column_double(statement, 4); [dbList addObject:entry]; [entry release]; } } sqlite3_finalize(statement); </code></pre> <p>The problem seems to be with my query, if I remove the "ORDER by rowOrder" part, everything seems to be just fine, also I'm using sqlcipher, and I'm wondering if that might cause this leak ?! </p> <p>Thanks a lot for your attention !!! </p> http://stackoverflow.com/questions/1778375/find-out-how-many-pages-of-memory-a-process-uses-on-linux 1 Find out how many pages of memory a process uses on linux misterfixit 2009-11-22T10:32:58Z 2009-11-22T12:17:06Z <p>I need to find out how many pages of memory a process allocates? Each page is 4096, the process memory usage I'm having some problems locating the correct value. When I'm looking in the gome-system-monitor there are a few values to choose from under memory map. </p> <p>Thanks.</p> <p>The point of this is to divide the memory usage by the page count and verify the page size. </p> http://stackoverflow.com/questions/1776701/concurrent-write-to-same-memory-address 5 concurrent write to same memory address Mark 2009-11-21T20:38:07Z 2009-11-22T01:45:36Z <p>If two threads try to write to the same address at the same time, is the value after the concurrent write guaranteed to be one of the values that the threads tried to write? or is it possible to get a combination of the bits? </p> <p>Also, is it possible for another thread to read the memory address while the bits are in an unstable state?</p> <p>I guess what the question boils down to is if a read or write to a single memory address is atomic at the hardware level.</p> http://stackoverflow.com/questions/1753342/android-physical-memory-read-write 2 Android physical memory read-write android.dev 2009-11-18T02:52:50Z 2009-11-21T23:53:35Z <p>Hi,</p> <p>I wanted to know if I can read-write SD card of Android by giving a physical location of the memory. I am thinking if it can be done at all? I could not find and a way to do that through the Android API.Then I thought I could write a JNI wrapper. But I think that would not do the trick either. Can it be done for phone memory too, if it is possible for SD card?</p> <p>Thanks!</p> http://stackoverflow.com/questions/678728/low-level-programming-how-to-find-data-in-a-memory-of-another-running-process 3 Low level programming: How to find data in a memory of another running process? serg555 2009-03-24T18:55:33Z 2009-11-21T19:14:33Z <p>I am trying to write a statistics tool for a game by extracting values from game's process memory (as there is no other way). The biggest challenge is to find out required addresses that store data I am interested. What makes it even more harder is dynamic memory allocation - I need to find not only addresses that store data but also pointers to those memory blocks, because addresses are changing every time game restarts. </p> <p>For now I am just manually searching game memory using memory editor (ArtMoney), and looking for addresses that change their values as data changes (or don't change). After address is found I am looking for a pointer that points to this memory block in a similar way. </p> <p>I wonder what techniques/tools exist for such tasks? Maybe there are some articles I can read? Is mastering disassembler the only way to go? For example game trainers are solving similar tasks, but they make them in days and I am struggling already for weeks.</p> <p>Thanks.</p> <p>PS. It's all under windows.</p> http://stackoverflow.com/questions/42210/does-google-chromes-process-per-tab-model-inherently-use-more-memory-than-firefo 1 Does Google Chrome's process-per-tab model inherently use more memory than Firefox and IE? mmorrisson 2008-09-03T17:54:20Z 2009-11-21T17:38:20Z <p>Does the process-per-tab model that Chrome uses end up using more memory than Firefox and IE? Does it really matter? Sure, memory is cheap, but the cost of adding more memory is not insignificant.</p> http://stackoverflow.com/questions/1751322/malloc-and-heap-memory 0 malloc() and heap memory atv 2009-11-17T19:53:34Z 2009-11-21T16:34:17Z <p>I am getting a strange result in the following C code.</p> <pre><code>int main() { int *p = (int *) malloc(100); p[120] = 5; printf("\n %d", p[120]); } </code></pre> <p>Since I have allocated only 100 bytes, this code should give cause a segmentation fault. However, it prints '5' and does not give any runtime error. Can anyone please explain the reason?</p> http://stackoverflow.com/questions/1769590/how-does-a-program-look-in-memory 5 How does a program look in memory? R.A 2009-11-20T10:26:16Z 2009-11-21T05:34:58Z <p>How is a program (e.g. C or C++) arranged in computer memory? I kind of know a little about segments, variables etc, but basically I have no solid understanding of the <strong>entire</strong> structure.</p> <p>Since the in-memory structure may differ, let's assume a C++ console application on Windows.</p> <p>Some pointers to what I'm after specifically:</p> <ul> <li>Outline of a function, and how is it called?</li> <li>Each function has a stack frame, what does that contain and how is it arranged in memory?</li> <li>Function arguments and return values</li> <li>Global and local variables?</li> <li>const static variables?</li> <li>Thread local storage..</li> </ul> <p>Links to tutorial-like material and such is welcome, but please no reference-style material assuming knowledge of assembler etc.</p> http://stackoverflow.com/questions/1773646/address-error-in-assembly-coldfire-mcf5307 0 Address Error in Assembly (ColdFire MCF5307) Midnight Blue 2009-11-20T22:31:39Z 2009-11-20T23:59:03Z <p>Taking my first course in assembly language, I am frustrated with cryptic error messages during debugging... I acknowledge that the following information will not be enough to find the cause of the problem (given my limited understanding of the assembly language, ColdFire(MCF5307, M68K family)), but I will gladly take any advice.</p> <blockquote> <p>...</p> <p>jsr out_string</p> <p>Address Error (format 0x04 vector 0x03 fault status 0x1 status reg 0x2700)</p> </blockquote> <p>I found a similar question on <a href="http://forums.freescale.com/freescale/board/message?board.id=CFCOMM&amp;thread.id=271" rel="nofollow">http://forums.freescale.com/freescale/board/message?board.id=CFCOMM&amp;thread.id=271</a>, regarding on ADDRESS ERROR in general.</p> <p>The answer to the question states that the address error is because the code is "incorrectly" trying to execute on a non-aligned boundary (or accessing non-aligned memory).</p> <p>So my questions will be:</p> <ol> <li><p>What does it mean to "incorrectly" trying to execute a non-aligned boundary/memory? If there is an example, it would help a lot</p></li> <li><p>What is non-aligned boundary/memory?</p></li> <li><p>How would you approach fixing this problem, assuming you have little debugging technique(eg. using breakpoints and trace)</p></li> </ol> http://stackoverflow.com/questions/1773514/c-asynchronous-sockets-where-is-the-state-object-stored -1 C# .. Asynchronous Sockets .. where is the State Object Stored? divinci 2009-11-20T21:59:25Z 2009-11-20T22:07:25Z <p>Hi all,</p> <p>A <em>simple</em> question really, but one where I cannot find any anwsers too.</p> <p>When I execute an Asynchronous Socket operation, such as :</p> <pre><code>socket.BeginSend ( new byte[]{6}, // byte[] | buffer 0, // int | data to send buffer offset 1, // int | data to send length SocketFlags.None, // enum | dunno :) new AsyncCallback(OnSend), // AsyncCallback | callback method STATEOBJECT // object | ..state object.. ); </code></pre> <p>It works, and when complete it invokes the AsyncCallback parameter, passing with it an IAsyncResult.</p> <pre><code>void OnSend(IAsyncResult ar) { object STATEOBJECT = ar.AsyncState as object; /* Process the socket operation */ } </code></pre> <p>SO..</p> <p>When the socket operation is being executed 'asynchronously' I know from various sources that the buffer is pinned in memory.</p> <p><strong>However I do not know where the 'state object' is stored?</strong></p> <p>why? because I am wondering what the effect of large 'state object's will have?</p> <p>Taa!</p>