Re: OUTPORT / outb instructions - where defined?

2001-04-12 Thread Markus Holmberg
ORT etc. > to do direct port io. I want to port a little program > (MPMAN) which can upload files to a MP3 player. > > -- > Chris Christoph P. U. Kukulies [EMAIL PROTECTED] > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-hackers"

Re: What do people think of maybe using the sourceforge software?

2000-05-09 Thread Markus Holmberg
cture? Comments? I'm just playing with this stuff a > bit myself right now and will say more once I actually know more about > it. > > - Jordan > > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-hackers" in the body of the messag

Re: Should -mieee-fp equal fpsetmask(0) to avoid SIGFPE on FreeBSD?

2000-01-05 Thread Markus Holmberg
niteness range check is there only to work around the MSVC NaN bug + and is not needed on correctly-behaving platforms such as the Mac. On a + correctly implemented platform the following is sufficient: + + #define JSDOUBLE_IS_INT(d, i) (((d) == (i = (jsint)(d))) && + !JSDOUBLE_IS_

Re: Should -mieee-fp equal fpsetmask(0) to avoid SIGFPE on FreeBSD?

2000-01-05 Thread Markus Holmberg
re one with fpsetmask(). :( Of course, an option would be to add a check for the floating point part in Martin's suggested c function, but that would add a lot of overhead which the responsible people for this code won't accept since JSDOUBLE_IS_INT is a frequently used macro. If anyone got

Re: Should -mieee-fp equal fpsetmask(0) to avoid SIGFPE on FreeBSD?

2000-01-04 Thread Markus Holmberg
issue for me is still one of standards conformance. Regardless of > how helpful enabled FP traps may be, on occasion, for certain programs > and/or certain programmers, the IEEE 754 standard is pretty darn clear > and unambiguous regarding what the default setting should be, i.e. all > t

Should -mieee-fp equal fpsetmask(0) to avoid SIGFPE on FreeBSD?

2000-01-03 Thread Markus Holmberg
for me asking about this is a FreeBSD-specific bug in Mozilla (that needs help from someone who knows this): http://bugzilla.mozilla.org/show_bug.cgi?id=9967 Feel free to check it out. /Markus -- Markus Holmberg | Give me UNIX or give me a typewriter. [EMAIL PROTECTED]

Re: SIGFPE on arithmetic overflow

1999-12-24 Thread Markus Holmberg
ving... a few eons ago... this was something that a lot of implementa- > tions did seem to screw up Many compiler/library/OS combinations > would invoke main() with one or more of the IEEE FP exceptions set to > cause a trap/signal (in violation of IEEE 754). > > > &g