• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Using NSPipe to get system command output
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Using NSPipe to get system command output


  • Subject: Re: Using NSPipe to get system command output
  • From: Charlie Dickman <email@hidden>
  • Date: Mon, 13 Aug 2012 19:34:31 -0400

So why doesn't it work???

On Aug 13, 2012, at 7:08 PM, Ken Thomases wrote:

> On Aug 13, 2012, at 5:09 PM, Jens Alfke wrote:
>
>> On Aug 13, 2012, at 2:17 PM, Charlie Dickman <email@hidden> wrote:
>>
>>> 	int vmDataLength = 0;
>>> 	do {
>>> 		vmData = [vmRead availableData];
>>> 		vmDataLength = [vmData length];
>>> 	} while (vmDataLength != 0);
>>
>> Don't you mean "== 0" on the final line?
>> Also, spin-loops like this are a really bad idea — this loop is going to consume something like 100% CPU. If you have to loop like this, run the current run loop in between tests.
>
> This isn't a spin loop and he has the termination condition correct.  -[NSFileHandle availableData] blocks if there's no data available.  It returns a zero-length NSData on end-of-file.
>
> Regards,
> Ken
>

Charlie Dickman
email@hidden




_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


References: 
 >Using NSPipe to get system command output (From: Charlie Dickman <email@hidden>)
 >Re: Using NSPipe to get system command output (From: Jens Alfke <email@hidden>)
 >Re: Using NSPipe to get system command output (From: Ken Thomases <email@hidden>)

  • Prev by Date: Re: Using NSPipe to get system command output
  • Next by Date: Re: Using NSPipe to get system command output
  • Previous by thread: Re: Using NSPipe to get system command output
  • Next by thread: Re: Using NSPipe to get system command output
  • Index(es):
    • Date
    • Thread