Welcome, Guest. Please login or register.

Author Topic: AmiZilla has a new home on the web www.amizilla.net  (Read 8828 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline Piru

  • \' union select name,pwd--
  • Hero Member
  • *****
  • Join Date: Aug 2002
  • Posts: 6946
    • Show all replies
    • http://www.iki.fi/sintonen/
Re: AmiZilla has a new home on the web www.amizilla.net
« on: September 07, 2004, 09:05:08 AM »
I have to agree with Cymric in most points (however semi-working libpthreads does exist at least). fork() will never work on AmigaOS or compatibles.

The sheer size of the project always made it almost close to impossible to get anything sensible out of it. I'm sorry if this shatters dreams of anyone, but with current work commited to AmiZilla, it will never see the day of light.
 

Offline Piru

  • \' union select name,pwd--
  • Hero Member
  • *****
  • Join Date: Aug 2002
  • Posts: 6946
    • Show all replies
    • http://www.iki.fi/sintonen/
Re: AmiZilla has a new home on the web www.amizilla.net
« Reply #1 on: September 08, 2004, 03:11:40 PM »
Quote
I still don't get the point of fork(), is it just a quick and simple way to get a small part of your code executing as a separate thread which can do a function and die...?

No. It splits the current process in two, the only difference being the return code of fork() call. Everything else is 100% the same, addressing, fhs, etc.

AmigaOS or compatibles will never be able to implement fork().
 

Offline Piru

  • \' union select name,pwd--
  • Hero Member
  • *****
  • Join Date: Aug 2002
  • Posts: 6946
    • Show all replies
    • http://www.iki.fi/sintonen/
Re: AmiZilla has a new home on the web www.amizilla.net
« Reply #2 on: September 08, 2004, 03:33:48 PM »
Quote
I find it hard to see the point :-)

It's for lazy coders so that they don't need to write proper asynchronous I/O in their apps. :-)