Re: how worried should I be about these console messages?
Re: how worried should I be about these console messages?
- Subject: Re: how worried should I be about these console messages?
- From: Chris Espinosa <email@hidden>
- Date: Wed, 7 Nov 2007 10:42:28 -0800
On Nov 7, 2007, at 10:28 AM, Matt Neuburg wrote:
11/6/07 11:34:14 AM Xcode[293] _XCDistributedBuildHostInfoTask
encountered
an error: Error Domain=NSPOSIXErrorDomain Code=2 UserInfo=0x32c2b00
"Operation could not be completed. No such file or directory"
11/6/07 11:37:26 AM [0x0-0x4c04c].com.apple.Xcode[293]
Xcode(293,0xb0103000)
malloc: free_garbage: garbage ptr = 0x20f26f0, has non-zero refcount
= 1
I get the first one just occasionally. It is odd because I am not
attempting
to do any distributed builds.
I get the second one constantly. As far as I can tell, I do not have
to be
developing to get it; just reading the documentation is enough. But
I could
be mistaken about that.
The first one's just a bug in that we sometimes do an inappropriate
status check of distributed builds when they're not in use (which is
why there's no such file or directory: you're not using distributed
builds).
The second one is an error deep in some system framework when running
under Garbage Collection that we have not been able to track down
yet. It simply means that somebody has neglected to do a final
release on a memory block that nobody has kept a pointer to (making
the final release technically impossible). The Garbage Collector
knows the block is inaccessible and is freeing it, but is warning us
that somebody forgot to formally release it before the pointer to it
went out of scope. Bad form, but no actual harm.
Chris
_______________________________________________
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