From: Damian Yerrick Newsgroups: comp.os.msdos.djgpp Subject: Re: Missing C++ keywords...in RHIDE (?) Organization: Pin Eight Software http://pineight.8m.com/ Message-ID: <1pjisso6ld5j5sv0m8g2bcbkd5altvp2ak@4ax.com> References: <01c0235d$5c8ab9e0$db0d1ad8 AT rlatiola> X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 41 X-Trace: +ryjt+SoFOs5S7qMRAQOq5CCjoj+9fsI5AyDmUDw1sk+H5LNHuoKJl+iKYMZNpxrRTWtbuxNU8PE!XyFNOt5Z3pE7Js7oZC+FjBe7eLYznH36Yf3HfDIhdoUjzFkzqnyAiyguOeQfC0E8p5Jz5Q3ao9uV!ee21KQ== X-Complaints-To: abuse AT gte DOT net X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly NNTP-Posting-Date: Thu, 21 Sep 2000 00:02:54 GMT Distribution: world Date: Thu, 21 Sep 2000 00:02:54 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Wed, 20 Sep 2000 23:53:55 GMT, "Lord Williams" wrote: >I dont know why but I cant find the syntax or >index help for finding : > >this >try >catch >throw >string >using namespace std; > >...in RHIDE 1.4.7.7 , Is it not included? The only documentation for C++ is: o C libraries o C++ streams o the deprecated libgpp library (replaced by STL) throw and friends are C++ _language_ features; there's no C or C++ language reference yet in the DJGPP distribution. >And theres no MSDOS impementation of child processes >mentioned in the documentation. if I wanted to port >over a UNIX program using fork() what would I do to >create a child process that would make up for that >problem? The spawn*() family of functions can do a fork/exec but will wait for the child process to complete. If you need concurrent execution, look in FAQ 22.4 for a thread library: http://www.delorie.com/djgpp/v2faq/faq22_4.html --