<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/include/ieeefp.h, branch release/5.2.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.2.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.2.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2003-01-19T06:01:33Z</updated>
<entry>
<title>o  Move the contents of &lt;machine/floatingpoint.h&gt; over to</title>
<updated>2003-01-19T06:01:33Z</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2003-01-19T06:01:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=9d683ffd4b8616aa69bc158f2ef2e942fd7c2115'/>
<id>urn:sha1:9d683ffd4b8616aa69bc158f2ef2e942fd7c2115</id>
<content type='text'>
   &lt;machine/ieeefp.h&gt; where it belongs.
o  Remove the i386 specific inclusion of &lt;machine/floatingpoint.h&gt;
   from &lt;ieeefp.h&gt;, now that including &lt;machine/ieeefp.h&gt; is enough
   for all architectures.
o  Allow &lt;machine/ieeefp.h&gt; to inline the functions exposed by the
   headers by checking for _IEEEFP_INLINED_ in the MI header. When
   defined, prototypes are not given and it is assumed that the MD
   headers, when inlining only a subset of the functions provide
   prototypes for the functions not being inlined.

Based on patch from: Terry Lambert &lt;tlambert2@mindspring.com&gt;
Tested with: make release.
</content>
</entry>
<entry>
<title>Breath deep and take __P out of the system include files.</title>
<updated>2002-03-23T17:24:55Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2002-03-23T17:24:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=bb28f3c29b4c91af1b0e79e456294bb08735648a'/>
<id>urn:sha1:bb28f3c29b4c91af1b0e79e456294bb08735648a</id>
<content type='text'>
# This appears to not break X11, but I'm having problems compiling the
# glide part of the server with or without this patch, so I can't tell
# for sure.
</content>
</entry>
<entry>
<title>Finish moving all IEEE fp types to be the same on all arch's.</title>
<updated>2000-05-10T19:41:40Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2000-05-10T19:41:40Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=bde8875a0659687c21064f965e743d6d2b0f1401'/>
<id>urn:sha1:bde8875a0659687c21064f965e743d6d2b0f1401</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fp_except =&gt; fp_except_t for consistancy with the i386 and the tradition</title>
<updated>2000-05-10T19:00:45Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2000-05-10T19:00:45Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=8d1d19d347b070297d8e91b8a85a3ed5c763fbbd'/>
<id>urn:sha1:8d1d19d347b070297d8e91b8a85a3ed5c763fbbd</id>
<content type='text'>
C methoid of nameing types.
</content>
</entry>
<entry>
<title>Allow fpsetmask(3) and friends to be used from a C++ program on the Alpha.</title>
<updated>1999-06-22T17:08:25Z</updated>
<author>
<name>Steve Price</name>
<email>steve@FreeBSD.org</email>
</author>
<published>1999-06-22T17:08:25Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=47fe9db9e6e493474dde3699467354383a042868'/>
<id>urn:sha1:47fe9db9e6e493474dde3699467354383a042868</id>
<content type='text'>
Reviewed by:	dfr
</content>
</entry>
<entry>
<title>Use __i386__ instead of i386 in an ifdef.</title>
<updated>1999-03-05T18:15:05Z</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1999-03-05T18:15:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=1b768d384a3088a1cdeaa1a7539514b14a7641e4'/>
<id>urn:sha1:1b768d384a3088a1cdeaa1a7539514b14a7641e4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Implement fpsetmask() and other fp*() functions.  Programs should use</title>
<updated>1998-12-23T11:50:52Z</updated>
<author>
<name>Doug Rabson</name>
<email>dfr@FreeBSD.org</email>
</author>
<published>1998-12-23T11:50:52Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=b7f762137adea9d0338ed8f3299f25b2be737af1'/>
<id>urn:sha1:b7f762137adea9d0338ed8f3299f25b2be737af1</id>
<content type='text'>
	#include &lt;ieeefp.h&gt;

to access these functions instead of the i386 specific

	#include &lt;machine/floatingpoint.h&gt;

Submitted by: Hidetoshi Shimokawa &lt;simokawa@sat.t.u-tokyo.ac.jp&gt;
</content>
</entry>
</feed>
