garbage

What's The Difference Between Java GC Log Lines? ("Total time for which..." vs "[GC")

Java Version: 1.6.0_20 I'm seeing the following in my logs, and I'm trying to figure out the difference beween the first line and the subsequent lines. As far as I know, they are both minor GC related, however there isn't a 1-to-1 between them as there usually is in other GC tutorials I've read. I know how to interpret the first line,...

Garbage Collector and Core Foundation

Hi, I wrote a method for load Image into CALayer. This is the code: - (CGImageRef)loadImage:(NSString*)path { // Get data image CGImageRef image = NULL; NSData *data = [NSData dataWithContentsOfFile:path]; CFDataRef imgData = (CFDataRef)data; CGDataProviderRef imgDataProvider = CGDataPr...

tap detecting garbage value

Hello, I'm using Apple TapDetectingImageView class from Autoscroll example. Static analizer shows the following warning: Classes/TapDetectingImageView.m:68:30:{68:17-68:29}: warning: The left operand of '==' is a garbage value if (tapCounts[0] == 1 && tapCounts[1] == 1) { ~~~~~~~~~~~~ ^ for the attached code ...

Speed issues with ReaderWriterLockSlim and Garbage Collection

I have an example piece of code the illustrates issues in my code when GC.Collect is carried out on a class having a ReaderWriterLockSlim member variable. The GC.Collect takes between 2 and 3 seconds to run. I need to carry out GC at regular intervals because my applicaton is extremely memory intensive. namespace WpfApplication12 { ...

{NSLocalizedDescription=Garbage after JSON}

Hello, I'm getting this error msg from the JSON result sent by the Twitter search API. Any ideas on what it means & how to avoid it? Its kind of a random error, since it does not always appear. -JSONValue failed. Error trace is: ( "Error Domain=org.brautaset.JSON.ErrorDomain Code=10 \"Garbage after JSON\" UserInfo=0x5c49900 {NSLoc...

C# Application performance deterioration due to garbage collection?

My application's performance deteriorate as it continues to run through the day. I suspect it is garbage collector, how can I verify this? Is there a way to find out which object/function is causing garbage collection overhead? Is there a way to manually perform garbage collection programatically to clear memory of leakages? Thanks, ...