Re: {id,rt}prio broken (at syscall level?)

2001-04-30 Thread Alexander Leidinger
On 29 Apr, Jake Burkholder wrote: > Thanks, this should be fixed now. A break; was forgotten in > some recent proc locking changes. I will test it after "softdep_update_inodeblock: bwrite: got error 22 while accessing filesystem" is fixed (I made a backup of / after reading the bugreport and be

Re: {id,rt}prio broken (at syscall level?)

2001-04-29 Thread Jake Burkholder
> Hi, > > -current from yesterday: > ---snip--- > (45) root@ttyp0 # idprio 31 /bin/sleep 10 > idprio: idprio: Invalid argument > > (46) root@ttyp0 # rtprio 31 /bin/sleep 10 > rtprio: rtprio: Invalid argument > ---snip--- > > isdnd is also affected (if you use its rtprio keyword in isdnd.rc).

Re: [ID 20000306.004] unpack(NaN) big baddaboom

2000-03-06 Thread Peter Jeremy
On 2000-Mar-07 05:35:04 +1100, Ian Grigg <[EMAIL PROTECTED]> wrote: >my $packed = "\0\0\xc0\x7f"; >print STDERR "len: ", length($packed), " bytes: ", unpack("H*", $packed), "\n"; >my $float = unpack("f", $packed); >print STDERR "float done\n"; >print STDERR "float: $float\n"; Looking at the resul

Re: [ID 20000306.004] unpack(NaN) big baddaboom

2000-03-06 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Ian Grigg writes: >> Depending on your religion the bug is either in perl itself which >> should be more careful about NaN and Inf values, or in the perl >> script you supply which does something which is patently bogus, >> but nothing which should provoke a FP tra

Re: [ID 20000306.004] unpack(NaN) big baddaboom

2000-03-06 Thread Ian Grigg
More on that! Lads here took this to heart and put the debugger over the code. Apparently, Linux uses glibc which sets the flags in FPU to ignore the cmp-NaN fault. Then, I guess, Perl picks it up and turns it into NaN. OTOH, FreeBSD libraries don't do that, and the FPU causes the cmp-NaN faul

Re: [ID 20000306.004] unpack(NaN) big baddaboom

2000-03-06 Thread Poul-Henning Kamp
That is because FreeBSD correctly traps operations on the value NaN. Depending on your religion the bug is either in perl itself which should be more careful about NaN and Inf values, or in the perl script you supply which does something which is patently bogus, but nothing which should provoke

Re: [ID 20000215.003] memory leak in perl 5.005_3

2000-02-15 Thread Jan Dubois
> after building 4-current (cvsupped yesterday) I'm using OpenSSH now. I'm > starting my X11 session with ssh-agent and using ssh-add in my > .xsession. Unfortunally there's no ssh-askpass build in 4-current (and > ssh-add is build with > '#define SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass"')

Re: [ID 20000215.003] memory leak in perl 5.005_3

2000-02-15 Thread Andrey Kolotev
On Tue, Feb 15, 2000 at 10:59:58AM +0100, Bart Schuller wrote: > > On Tue, Feb 15, 2000 at 01:20:28PM +0500, Andrey Kolotev wrote: > > @c = ("Async32"x4, "Async32"x5, "Async32"x7, "Async32"x10); > > > > while (1) > > { > > foreach (@c) > > { > > $_ =~ s/Async/ Async/; > >

Re: [ID 20000215.003] memory leak in perl 5.005_3

2000-02-15 Thread Bart Schuller
On Tue, Feb 15, 2000 at 01:20:28PM +0500, Andrey Kolotev wrote: > @c = ("Async32"x4, "Async32"x5, "Async32"x7, "Async32"x10); > > while (1) > { > foreach (@c) > { > $_ =~ s/Async/ Async/; > } > } You're forever adding spaces and complain of a memory leak? -- The

Re: [ID 20000124.004] "perl in malloc(): warning: recursive call"on

2000-01-25 Thread Chuck Robey
On Tue, 25 Jan 2000, Ilya Zakharevich wrote: > On Tue, Jan 25, 2000 at 02:44:05PM -0500, Chuck Robey wrote: > > On Mon, 24 Jan 2000, Lars Eggert wrote: > > > > > Ilya, > > > > > > thanks for the quick response. > > > > > > > Signals and Perl do not mix. Please do not use signals if a segfault

Re: [ID 20000124.004] "perl in malloc(): warning: recursive call" on

2000-01-25 Thread Ilya Zakharevich
On Tue, Jan 25, 2000 at 02:44:05PM -0500, Chuck Robey wrote: > On Mon, 24 Jan 2000, Lars Eggert wrote: > > > Ilya, > > > > thanks for the quick response. > > > > > Signals and Perl do not mix. Please do not use signals if a segfault > > > is not a desirable form of output. > > > > Never? Afte

Re: [ID 20000124.004] "perl in malloc(): warning: recursive call"on

2000-01-25 Thread Chuck Robey
On Mon, 24 Jan 2000, Lars Eggert wrote: > Ilya, > > thanks for the quick response. > > > Signals and Perl do not mix. Please do not use signals if a segfault > > is not a desirable form of output. > > Never? After reading perlipc I was under the impression that using signals > was okay if you

Re: [ID 20000124.004] "perl in malloc(): warning: recursive call" on

2000-01-24 Thread Ilya Zakharevich
On Mon, Jan 24, 2000 at 09:53:27PM -0800, Lars Eggert wrote: > > Signals and Perl do not mix. Please do not use signals if a segfault > > is not a desirable form of output. > > Never? Never. Well, I did not try XSUB signal handlers, but if it is a Perl subroutine, then the harm may be already

Re: [ID 20000124.004] "perl in malloc(): warning: recursive call"on

2000-01-24 Thread Lars Eggert
Ilya, thanks for the quick response. > Signals and Perl do not mix. Please do not use signals if a segfault > is not a desirable form of output. Never? After reading perlipc I was under the impression that using signals was okay if you keep your handlers simple. I may have to use to another fo

Re: [ID 20000124.004] "perl in malloc(): warning: recursive call" on

2000-01-24 Thread Ilya Zakharevich
Lars Eggert writes: > Running the following test script causes perl to crash. You may need > to run the script several times before seeing the problem. (The script > spawns a child process that does nothing but write to an array. The > parent signals the child periodically.) Signals and Perl do n

Re: $Id$

1999-01-27 Thread Warner Losh
In message Jeroen Ruigrok/Asmodai writes: : Why isn't the FreeBSD project using tags like $FreeBSD$ instead of the : now-used $Id$? The stuff was added to the tree, but was backed out because our CVS support, at the time, wasn't up to snuff. I'd love to see this change, but there are many other