Welcome, Guest. Please login or register.

Author Topic: www.anubis-os.org finally open  (Read 35098 times)

Description:

0 Members and 3 Guests 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: www.anubis-os.org finally open
« on: March 18, 2009, 01:54:13 PM »
@dammy
Quote
EUAE will be integrated for those who want it.

How?

I've yet to see any sensible plan on how exactly that is supposed to happen. This thing has been talked about for years while nothing tangible has come out of it so far.

@Khephren
Quote
Excelent Multi tasking.

AmigaOS scheduler is rather lame. Any busy higher priority task will block lower priority ones forever. Having tons of tasks results in exponential slowdown inside the scheduler (it uses linear list walking). There is no guaranteed fairness in the scheduler. Anything has a better scheduler these days.
 

Offline Piru

  • \' union select name,pwd--
  • Hero Member
  • *****
  • Join Date: Aug 2002
  • Posts: 6946
    • Show all replies
    • http://www.iki.fi/sintonen/
Re: www.anubis-os.org finally open
« Reply #1 on: March 18, 2009, 04:05:26 PM »
@dammy
Quote
What are you referring to, AROS or Anubis-OS?

The thing I quoted in my post. You know like in this reply I quoted part of your question... ;-)
 

Offline Piru

  • \' union select name,pwd--
  • Hero Member
  • *****
  • Join Date: Aug 2002
  • Posts: 6946
    • Show all replies
    • http://www.iki.fi/sintonen/
Re: www.anubis-os.org finally open
« Reply #2 on: March 20, 2009, 02:15:04 PM »
@JJ
Quote
Or are you connected to morphos or AROS dev ?

Are you trying to suggest something here?
 

Offline Piru

  • \' union select name,pwd--
  • Hero Member
  • *****
  • Join Date: Aug 2002
  • Posts: 6946
    • Show all replies
    • http://www.iki.fi/sintonen/
Re: www.anubis-os.org finally open
« Reply #3 on: September 07, 2009, 08:27:42 PM »
Quote from: Trev;522390

Code: [Select]

/* static */ int open(const char *path, int oflag, ... )
{
}

BPTR Open(STRPTR name, LONG accessMode)
{
  int fd;

  fd = open(name, ...);
  ...
  return /* BPTR */;
}


If all files are opened via Open(), is it Linux or dos.library?

linux. open() doesn't do amiga like paths, nor does it pop up requesters when needed etc.