Instruments runs forever
Instruments runs forever
- Subject: Instruments runs forever
- From: Steve Wetzel <email@hidden>
- Date: Fri, 26 Dec 2008 16:23:59 -0600
I am running a very small program and when I run with instruments it
runs forever. The program is:
// main.m
#import <Cocoa/Cocoa.h>
#import "Fraction.h"
int main(int argc, char *argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int i = 1;
Fraction *f = [[Fraction alloc] init];
[f setNumerator:i];
[f setDenominator:i];
[pool release];
}
I have synthesized the properties in my Fraction class.
When I have run instruments in the past it always would stop. Right
now this program is running in instruments for over 4 minutes. What
is wrong?
Steve Wetzel
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden