• 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: Launching an app from Carbon app (newbie question)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Launching an app from Carbon app (newbie question)


  • Subject: Re: Launching an app from Carbon app (newbie question)
  • From: Andrew Farmer <email@hidden>
  • Date: Sun, 16 Oct 2005 21:47:12 -0700

On 16 Oct 05, at 17:00, apple wrote:
I tried using execve, but I always get a ENOTSUP returned from that, and can't figure out why.

execve() will return ENOTSUP if your process has more than one thread. Forking will fix this, though - try something more like...


pid_t p = fork();
if(p < 0)
{
  scream_bloody_murder();
  return;
}

if(p == 0)
{
  execve(whatever);
}
exit(0);

Attachment: PGP.sig
Description: This is a digitally signed message part

 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Launching an app from Carbon app (newbie question)
      • From: "Tom K." <email@hidden>
References: 
 >Launching an app from Carbon app (newbie question) (From: "apple" <email@hidden>)

  • Prev by Date: How to "marry" NSSegmentedControl and NSArrayController ?
  • Next by Date: Re: Hashing a folder
  • Previous by thread: Re: Launching an app from Carbon app (newbie question)
  • Next by thread: Re: Launching an app from Carbon app (newbie question)
  • Index(es):
    • Date
    • Thread