Re: LINUX clone? sched_yield?

1999-02-05 Thread Paulo Fragoso
Hi, On Sat, 30 Jan 1999, Richard Seaman, Jr. wrote: You need to: 1) Upgrade your source tree to Jan 28 or later for 3.X or Jan 26 or later for 4.0 current, and make world and config and remake and install a new kernel, or 2) Take your existing source and add -DCOMPAT_LINUX_THREADS to

Re: LINUX clone? sched_yield?

1999-02-01 Thread Paulo Fragoso
Hi, On Sat, 30 Jan 1999, Richard Seaman, Jr. wrote: You need to: 1) Upgrade your source tree to Jan 28 or later for 3.X or Jan 26 or later for 4.0 current, and make world and config and remake and install a new kernel, That's ok now :-). Thanks, Paulo. -- ... Overall we've found

Re: LINUX clone? sched_yield?

1999-01-31 Thread Peter Dufault
There's a yield() syscall that is enabled permanently. Is there any harm in untangling it from the POSIX sched_yield()? :-) I've got a synch_yield() in kern_synch and a call into it from yield() in kern_thread that duplicates the yield() behavior for the non-RTPRIO, non-sched_yield()

LINUX clone? sched_yield?

1999-01-30 Thread Paulo Fragoso
Hi, I'm trying to install StarOffice 5.0 in my FBSD-3.0-STABLE (26Jan1999). When setup is running the kernel reports: linux_clone(303): Not enabled Jan 30 15:05:39 foker /kernel: cmd setup.bin pid 303 tried to use non-present sched_yield Jan 30 15:05:53 foker last message repeated 892 times

Re: LINUX clone? sched_yield?

1999-01-30 Thread Brian Feldman
On Sat, 30 Jan 1999, Paulo Fragoso wrote: Hi, I'm trying to install StarOffice 5.0 in my FBSD-3.0-STABLE (26Jan1999). When setup is running the kernel reports: linux_clone(303): Not enabled Jan 30 15:05:39 foker /kernel: cmd setup.bin pid 303 tried to use non-present sched_yield Jan 30

Re: LINUX clone? sched_yield?

1999-01-30 Thread Richard Seaman, Jr.
On Sat, Jan 30, 1999 at 03:33:26PM -0300, Paulo Fragoso wrote: Hi, I'm trying to install StarOffice 5.0 in my FBSD-3.0-STABLE (26Jan1999). When setup is running the kernel reports: linux_clone(303): Not enabled Jan 30 15:05:39 foker /kernel: cmd setup.bin pid 303 tried to use non-present

Re: LINUX clone? sched_yield?

1999-01-30 Thread Garrett Wollman
On Sat, 30 Jan 1999 13:54:36 -0500 (EST), Brian Feldman gr...@unixhelp.org said: sched_yield() is a stub that informs you nicely that it doesn't exist :) Use the options: options P1003_1B options _KPOSIX_PRIORITY_SCHEDULING options _KPOSIX_VERSION=199309L Peter: is

Re: LINUX clone? sched_yield?

1999-01-30 Thread Peter Dufault
On Sat, 30 Jan 1999 13:54:36 -0500 (EST), Brian Feldman gr...@unixhelp.org said: sched_yield() is a stub that informs you nicely that it doesn't exist :) Use the options: options P1003_1B options _KPOSIX_PRIORITY_SCHEDULING options _KPOSIX_VERSION=199309L

Re: LINUX clone? sched_yield?

1999-01-30 Thread Bruce Evans
sched_yield() is a stub that informs you nicely that it doesn't exist :) Use the options: options P1003_1B options _KPOSIX_PRIORITY_SCHEDULING options _KPOSIX_VERSION=199309L Peter: is there any harm in enabling these features permanently? There's a yield()