<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2011-03-24)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-03-24 Ralf Corsépius <ralf.corsepius@rtems.org>

        * libnetworking/sys/linker_set.h: Add local versions of __used
        and __CONCAT macros.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2786&r2=text&tr2=1.2787&diff_format=h">M</a></td><td width='1%'>1.2787</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/sys/linker_set.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/libnetworking/sys/linker_set.h</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2786 rtems/cpukit/ChangeLog:1.2787
--- rtems/cpukit/ChangeLog:1.2786       Fri Mar 18 09:12:46 2011
+++ rtems/cpukit/ChangeLog      Thu Mar 24 04:28:31 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-03-24    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * libnetworking/sys/linker_set.h: Add local versions of __used
+       and __CONCAT macros.
+
</font> 2011-03-18        Jennifer Averett <Jennifer.Averett@OARcorp.com>
 
        * score/src/percpu.c: All possible cpus must be

<font color='#006600'>diff -u rtems/cpukit/libnetworking/sys/linker_set.h:1.3 rtems/cpukit/libnetworking/sys/linker_set.h:1.4
--- rtems/cpukit/libnetworking/sys/linker_set.h:1.3     Sun Jul  9 05:05:27 2006
+++ rtems/cpukit/libnetworking/sys/linker_set.h Thu Mar 24 04:28:32 2011
</font><font color='#997700'>@@ -30,6 +30,22 @@
</font> #ifndef _SYS_LINKER_SET_H_
 #define _SYS_LINKER_SET_H_
 
<font color='#000088'>+/* FIXME: These macros should not be here
+ * BSD has them macros in sys/cdefs.h
+ * older rtems had them in rtems/bsd/sys/cdefs.h
+ * newlib has some of them in sys/cdefs.h
+ */
+
+#if defined(__rtems__)
+#ifndef        __used
+#define        __used          __attribute__((__used__))
+#endif
+#ifndef __CONCAT
+#define        __CONCAT1(x,y)  x ## y
+#define        __CONCAT(x,y)   __CONCAT1(x,y)
+#endif
+#endif
+
</font> /*
  * The following macros are used to declare global sets of objects, which
  * are collected by the linker into a `linker_set' as defined below.
</pre>
<p> </p>
<a name='cs2'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-03-24 Ralf Corsépius <ralf.corsepius@rtems.org>

        * libnetworking/ifaddrs.h, libnetworking/netdb.h,
        libnetworking/resolv.h, libnetworking/arpa/inet.h,
        libnetworking/arpa/nameser.h, libnetworking/libc/gethostbydns.c,
        libnetworking/libc/getifaddrs.c, libnetworking/libc/if_indextoname.c,
        libnetworking/libc/if_nameindex.c, libnetworking/libc/res_stubs.c,
        libnetworking/machine/in_cksum.h, libnetworking/net/ethernet.h,
        libnetworking/net/if.h, libnetworking/net/if_dl.h,
        libnetworking/netinet/ip.h, libnetworking/netinet/tcp.h,
        libnetworking/netinet/tcp_debug.c,
        libnetworking/rtems/rtems_bsdnet_internal.h,
        libnetworking/sys/libkern.h, libnetworking/sys/mount.h,
        libnetworking/sys/poll.h, libnetworking/sys/socket.h,
        libnetworking/sys/sysctl.h, libnetworking/sys/syslog.h,
        libnetworking/sys/systm.h, libnetworking/sys/uio.h,
        libnetworking/sys/un.h:
        Include <sys/cdefs.h> (Eliminate rtems/bsd/sys/cdefs.h).
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2787&r2=text&tr2=1.2788&diff_format=h">M</a></td><td width='1%'>1.2788</td><td width='100%'>cpukit/ChangeLog</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2787 rtems/cpukit/ChangeLog:1.2788
--- rtems/cpukit/ChangeLog:1.2787       Thu Mar 24 04:28:31 2011
+++ rtems/cpukit/ChangeLog      Thu Mar 24 04:31:38 2011
</font><font color='#997700'>@@ -1,5 +1,21 @@
</font> 2011-03-24        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * libnetworking/ifaddrs.h, libnetworking/netdb.h,
+       libnetworking/resolv.h, libnetworking/arpa/inet.h,
+       libnetworking/arpa/nameser.h, libnetworking/libc/gethostbydns.c,
+       libnetworking/libc/getifaddrs.c, libnetworking/libc/if_indextoname.c,
+       libnetworking/libc/if_nameindex.c, libnetworking/libc/res_stubs.c,
+       libnetworking/machine/in_cksum.h, libnetworking/net/ethernet.h,
+       libnetworking/net/if.h, libnetworking/net/if_dl.h,
+       libnetworking/netinet/ip.h, libnetworking/netinet/tcp.h,
+       libnetworking/netinet/tcp_debug.c,
+       libnetworking/rtems/rtems_bsdnet_internal.h,
+       libnetworking/sys/libkern.h, libnetworking/sys/mount.h,
+       libnetworking/sys/poll.h, libnetworking/sys/socket.h,
+       libnetworking/sys/sysctl.h, libnetworking/sys/syslog.h,
+       libnetworking/sys/systm.h, libnetworking/sys/uio.h,
+       libnetworking/sys/un.h:
+       Include <sys/cdefs.h> (Eliminate rtems/bsd/sys/cdefs.h).
</font>   * libnetworking/sys/linker_set.h: Add local versions of __used
        and __CONCAT macros.
 
</pre>
<p> </p>
<a name='cs3'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-03-24 Ralf Corsépius <ralf.corsepius@rtems.org>

        * librpc/include/rpc/auth.h, librpc/include/rpc/auth_unix.h,
        librpc/include/rpc/clnt.h, librpc/include/rpc/clnt_soc.h,
        librpc/include/rpc/pmap_clnt.h, librpc/include/rpc/pmap_prot.h,
        librpc/include/rpc/pmap_rmt.h, librpc/include/rpc/rpc_com.h,
        librpc/include/rpc/rpcent.h, librpc/include/rpc/svc.h,
        librpc/include/rpc/svc_soc.h, librpc/include/rpc/xdr.h,
        librpc/include/rpcsvc/ypclnt.h:
        Include <sys/cdefs.h> (Eliminate rtems/bsd/sys/cdefs.h).
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2788&r2=text&tr2=1.2789&diff_format=h">M</a></td><td width='1%'>1.2789</td><td width='100%'>cpukit/ChangeLog</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2788 rtems/cpukit/ChangeLog:1.2789
--- rtems/cpukit/ChangeLog:1.2788       Thu Mar 24 04:31:38 2011
+++ rtems/cpukit/ChangeLog      Thu Mar 24 04:33:33 2011
</font><font color='#997700'>@@ -1,5 +1,13 @@
</font> 2011-03-24        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * librpc/include/rpc/auth.h, librpc/include/rpc/auth_unix.h,
+       librpc/include/rpc/clnt.h, librpc/include/rpc/clnt_soc.h,
+       librpc/include/rpc/pmap_clnt.h, librpc/include/rpc/pmap_prot.h,
+       librpc/include/rpc/pmap_rmt.h, librpc/include/rpc/rpc_com.h,
+       librpc/include/rpc/rpcent.h, librpc/include/rpc/svc.h,
+       librpc/include/rpc/svc_soc.h, librpc/include/rpc/xdr.h,
+       librpc/include/rpcsvc/ypclnt.h:
+       Include <sys/cdefs.h> (Eliminate rtems/bsd/sys/cdefs.h).
</font>   * libnetworking/ifaddrs.h, libnetworking/netdb.h,
        libnetworking/resolv.h, libnetworking/arpa/inet.h,
        libnetworking/arpa/nameser.h, libnetworking/libc/gethostbydns.c,
</pre>
<p> </p>
<a name='cs4'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>Include <sys/cdefs.h> (Eliminate rtems/bsd/sys/cdefs.h).
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/sys/ioccom.h.diff?r1=text&tr1=1.10&r2=text&tr2=1.11&diff_format=h">M</a></td><td width='1%'>1.11</td><td width='100%'>cpukit/libcsupport/include/sys/ioccom.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/arpa/inet.h.diff?r1=text&tr1=1.7&r2=text&tr2=1.8&diff_format=h">M</a></td><td width='1%'>1.8</td><td width='100%'>cpukit/libnetworking/arpa/inet.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/arpa/nameser.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/libnetworking/arpa/nameser.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/ifaddrs.h.diff?r1=text&tr1=1.1&r2=text&tr2=1.2&diff_format=h">M</a></td><td width='1%'>1.2</td><td width='100%'>cpukit/libnetworking/ifaddrs.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/libc/gethostbydns.c.diff?r1=text&tr1=1.14&r2=text&tr2=1.15&diff_format=h">M</a></td><td width='1%'>1.15</td><td width='100%'>cpukit/libnetworking/libc/gethostbydns.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/libc/getifaddrs.c.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/libnetworking/libc/getifaddrs.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/libc/if_indextoname.c.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/libnetworking/libc/if_indextoname.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/libc/if_nameindex.c.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/libnetworking/libc/if_nameindex.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/libc/res_stubs.c.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/libnetworking/libc/res_stubs.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/machine/in_cksum.h.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>cpukit/libnetworking/machine/in_cksum.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/net/ethernet.h.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>cpukit/libnetworking/net/ethernet.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/net/if.h.diff?r1=text&tr1=1.22&r2=text&tr2=1.23&diff_format=h">M</a></td><td width='1%'>1.23</td><td width='100%'>cpukit/libnetworking/net/if.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/net/if_dl.h.diff?r1=text&tr1=1.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>cpukit/libnetworking/net/if_dl.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/netdb.h.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/libnetworking/netdb.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/netinet/ip.h.diff?r1=text&tr1=1.8&r2=text&tr2=1.9&diff_format=h">M</a></td><td width='1%'>1.9</td><td width='100%'>cpukit/libnetworking/netinet/ip.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/netinet/tcp.h.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/libnetworking/netinet/tcp.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/netinet/tcp_debug.c.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>cpukit/libnetworking/netinet/tcp_debug.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/resolv.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/libnetworking/resolv.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/rtems/rtems_bsdnet_internal.h.diff?r1=text&tr1=1.37&r2=text&tr2=1.38&diff_format=h">M</a></td><td width='1%'>1.38</td><td width='100%'>cpukit/libnetworking/rtems/rtems_bsdnet_internal.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/sys/libkern.h.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/libnetworking/sys/libkern.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/sys/mount.h.diff?r1=text&tr1=1.8&r2=text&tr2=1.9&diff_format=h">M</a></td><td width='1%'>1.9</td><td width='100%'>cpukit/libnetworking/sys/mount.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/sys/poll.h.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/libnetworking/sys/poll.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/sys/socket.h.diff?r1=text&tr1=1.17&r2=text&tr2=1.18&diff_format=h">M</a></td><td width='1%'>1.18</td><td width='100%'>cpukit/libnetworking/sys/socket.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/sys/sysctl.h.diff?r1=text&tr1=1.14&r2=text&tr2=1.15&diff_format=h">M</a></td><td width='1%'>1.15</td><td width='100%'>cpukit/libnetworking/sys/sysctl.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/sys/syslog.h.diff?r1=text&tr1=1.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>cpukit/libnetworking/sys/syslog.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/sys/systm.h.diff?r1=text&tr1=1.7&r2=text&tr2=1.8&diff_format=h">M</a></td><td width='1%'>1.8</td><td width='100%'>cpukit/libnetworking/sys/systm.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/sys/uio.h.diff?r1=text&tr1=1.7&r2=text&tr2=1.8&diff_format=h">M</a></td><td width='1%'>1.8</td><td width='100%'>cpukit/libnetworking/sys/uio.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/sys/un.h.diff?r1=text&tr1=1.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>cpukit/libnetworking/sys/un.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/auth.h.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/librpc/include/rpc/auth.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/auth_unix.h.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/librpc/include/rpc/auth_unix.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/clnt.h.diff?r1=text&tr1=1.11&r2=text&tr2=1.12&diff_format=h">M</a></td><td width='1%'>1.12</td><td width='100%'>cpukit/librpc/include/rpc/clnt.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/clnt_soc.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/librpc/include/rpc/clnt_soc.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/pmap_clnt.h.diff?r1=text&tr1=1.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>cpukit/librpc/include/rpc/pmap_clnt.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/pmap_prot.h.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/librpc/include/rpc/pmap_prot.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/pmap_rmt.h.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/librpc/include/rpc/pmap_rmt.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/rpc_com.h.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/librpc/include/rpc/rpc_com.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/rpcent.h.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/librpc/include/rpc/rpcent.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/svc.h.diff?r1=text&tr1=1.10&r2=text&tr2=1.11&diff_format=h">M</a></td><td width='1%'>1.11</td><td width='100%'>cpukit/librpc/include/rpc/svc.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/svc_soc.h.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/librpc/include/rpc/svc_soc.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpc/xdr.h.diff?r1=text&tr1=1.11&r2=text&tr2=1.12&diff_format=h">M</a></td><td width='1%'>1.12</td><td width='100%'>cpukit/librpc/include/rpc/xdr.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/librpc/include/rpcsvc/ypclnt.h.diff?r1=text&tr1=1.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>cpukit/librpc/include/rpcsvc/ypclnt.h</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/sys/ioccom.h:1.10 rtems/cpukit/libcsupport/include/sys/ioccom.h:1.11
--- rtems/cpukit/libcsupport/include/sys/ioccom.h:1.10  Wed Feb  4 06:52:22 2009
+++ rtems/cpukit/libcsupport/include/sys/ioccom.h       Thu Mar 24 04:36:14 2011
</font><font color='#997700'>@@ -88,7 +88,7 @@
</font> 
 #ifndef _KERNEL
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #ifndef __ioctl_command_defined
 typedef u_int32_t ioctl_command_t;

<font color='#006600'>diff -u rtems/cpukit/libnetworking/arpa/inet.h:1.7 rtems/cpukit/libnetworking/arpa/inet.h:1.8
--- rtems/cpukit/libnetworking/arpa/inet.h:1.7  Wed Sep  1 06:12:37 2010
+++ rtems/cpukit/libnetworking/arpa/inet.h      Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -64,7 +64,7 @@
</font> 
 /* External definitions for functions in inet(3). */
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include <rtems/bsdnet/_types.h>
 
 /* Required for byteorder(3) functions. */

<font color='#006600'>diff -u rtems/cpukit/libnetworking/arpa/nameser.h:1.3 rtems/cpukit/libnetworking/arpa/nameser.h:1.4
--- rtems/cpukit/libnetworking/arpa/nameser.h:1.3       Thu May 10 02:29:13 2007
+++ rtems/cpukit/libnetworking/arpa/nameser.h   Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -63,7 +63,7 @@
</font> #define BIND_4_COMPAT
 
 #include <sys/types.h>
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 /*
  * revision information.  this is the release date in YYYYMMDD format.

<font color='#006600'>diff -u rtems/cpukit/libnetworking/ifaddrs.h:1.1 rtems/cpukit/libnetworking/ifaddrs.h:1.2
--- rtems/cpukit/libnetworking/ifaddrs.h:1.1    Thu Oct  4 09:23:45 2007
+++ rtems/cpukit/libnetworking/ifaddrs.h        Thu Mar 24 04:31:24 2011
</font><font color='#997700'>@@ -46,7 +46,7 @@
</font> #define   ifa_broadaddr   ifa_dstaddr     /* broadcast address interface */
 #endif
  
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 __BEGIN_DECLS
 extern int getifaddrs(struct ifaddrs **);

<font color='#006600'>diff -u rtems/cpukit/libnetworking/libc/gethostbydns.c:1.14 rtems/cpukit/libnetworking/libc/gethostbydns.c:1.15
--- rtems/cpukit/libnetworking/libc/gethostbydns.c:1.14 Wed Apr 14 07:42:11 2010
+++ rtems/cpukit/libnetworking/libc/gethostbydns.c      Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -57,7 +57,7 @@
</font> #include "config.h"
 #endif
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #include <sys/types.h>
 #include <sys/param.h>

<font color='#006600'>diff -u rtems/cpukit/libnetworking/libc/getifaddrs.c:1.2 rtems/cpukit/libnetworking/libc/getifaddrs.c:1.3
--- rtems/cpukit/libnetworking/libc/getifaddrs.c:1.2    Sun Mar 28 00:42:02 2010
+++ rtems/cpukit/libnetworking/libc/getifaddrs.c        Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -33,7 +33,7 @@
</font> #include "config.h"
 #endif
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #include <sys/types.h>
 #include <sys/ioctl.h>

<font color='#006600'>diff -u rtems/cpukit/libnetworking/libc/if_indextoname.c:1.2 rtems/cpukit/libnetworking/libc/if_indextoname.c:1.3
--- rtems/cpukit/libnetworking/libc/if_indextoname.c:1.2        Sun Mar 28 00:42:03 2010
+++ rtems/cpukit/libnetworking/libc/if_indextoname.c    Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -29,7 +29,7 @@
</font> #include "config.h"
 #endif
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #include <sys/types.h>
 #include <sys/socket.h>

<font color='#006600'>diff -u rtems/cpukit/libnetworking/libc/if_nameindex.c:1.2 rtems/cpukit/libnetworking/libc/if_nameindex.c:1.3
--- rtems/cpukit/libnetworking/libc/if_nameindex.c:1.2  Sun Mar 28 00:42:03 2010
+++ rtems/cpukit/libnetworking/libc/if_nameindex.c      Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -29,7 +29,7 @@
</font> #include "config.h"
 #endif
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #include <sys/types.h>
 #include <sys/socket.h>

<font color='#006600'>diff -u rtems/cpukit/libnetworking/libc/res_stubs.c:1.3 rtems/cpukit/libnetworking/libc/res_stubs.c:1.4
--- rtems/cpukit/libnetworking/libc/res_stubs.c:1.3     Thu May 10 02:29:13 2007
+++ rtems/cpukit/libnetworking/libc/res_stubs.c Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -43,7 +43,7 @@
</font> #endif
 
 #include <sys/types.h>
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 __weak_reference(__inet_addr, inet_addr);
 __weak_reference(__inet_aton, inet_aton);

<font color='#006600'>diff -u rtems/cpukit/libnetworking/machine/in_cksum.h:1.9 rtems/cpukit/libnetworking/machine/in_cksum.h:1.10
--- rtems/cpukit/libnetworking/machine/in_cksum.h:1.9   Wed Feb 23 08:28:26 2011
+++ rtems/cpukit/libnetworking/machine/in_cksum.h       Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -39,7 +39,7 @@
</font> #ifndef _MACHINE_IN_CKSUM_H_
 #define        _MACHINE_IN_CKSUM_H_    1
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include <netinet/ip.h> /* struct ip */
 
 /*

<font color='#006600'>diff -u rtems/cpukit/libnetworking/net/ethernet.h:1.9 rtems/cpukit/libnetworking/net/ethernet.h:1.10
--- rtems/cpukit/libnetworking/net/ethernet.h:1.9       Thu May 10 02:29:13 2007
+++ rtems/cpukit/libnetworking/net/ethernet.h   Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -369,7 +369,7 @@
</font> 
 #else /* _KERNEL */
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 /*
  * Ethernet address conversion/parsing routines.

<font color='#006600'>diff -u rtems/cpukit/libnetworking/net/if.h:1.22 rtems/cpukit/libnetworking/net/if.h:1.23
--- rtems/cpukit/libnetworking/net/if.h:1.22    Wed Mar  2 08:18:26 2011
+++ rtems/cpukit/libnetworking/net/if.h Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -37,7 +37,7 @@
</font> #ifndef _NET_IF_H_
 #define        _NET_IF_H_
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #if defined(__rtems__)
 /*

<font color='#006600'>diff -u rtems/cpukit/libnetworking/net/if_dl.h:1.5 rtems/cpukit/libnetworking/net/if_dl.h:1.6
--- rtems/cpukit/libnetworking/net/if_dl.h:1.5  Thu May 10 02:29:13 2007
+++ rtems/cpukit/libnetworking/net/if_dl.h      Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -74,7 +74,7 @@
</font> 
 #ifndef _KERNEL
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 __BEGIN_DECLS
 void   link_addr(const char *, struct sockaddr_dl *);

<font color='#006600'>diff -u rtems/cpukit/libnetworking/netdb.h:1.6 rtems/cpukit/libnetworking/netdb.h:1.7
--- rtems/cpukit/libnetworking/netdb.h:1.6      Mon Oct 15 02:59:00 2007
+++ rtems/cpukit/libnetworking/netdb.h  Thu Mar 24 04:31:24 2011
</font><font color='#997700'>@@ -65,7 +65,7 @@
</font> #ifndef _NETDB_H_
 #define _NETDB_H_
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include <rtems/bsdnet/_types.h>
 
 #ifndef _SOCKLEN_T_DECLARED

<font color='#006600'>diff -u rtems/cpukit/libnetworking/netinet/ip.h:1.8 rtems/cpukit/libnetworking/netinet/ip.h:1.9
--- rtems/cpukit/libnetworking/netinet/ip.h:1.8 Thu May 10 02:29:13 2007
+++ rtems/cpukit/libnetworking/netinet/ip.h     Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -37,7 +37,7 @@
</font> #ifndef _NETINET_IP_H_
 #define _NETINET_IP_H_
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 /*
  * Definitions for internet protocol version 4.

<font color='#006600'>diff -u rtems/cpukit/libnetworking/netinet/tcp.h:1.6 rtems/cpukit/libnetworking/netinet/tcp.h:1.7
--- rtems/cpukit/libnetworking/netinet/tcp.h:1.6        Thu May 10 02:29:13 2007
+++ rtems/cpukit/libnetworking/netinet/tcp.h    Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -37,7 +37,7 @@
</font> #ifndef _NETINET_TCP_H_
 #define _NETINET_TCP_H_
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #if __BSD_VISIBLE
 

<font color='#006600'>diff -u rtems/cpukit/libnetworking/netinet/tcp_debug.c:1.9 rtems/cpukit/libnetworking/netinet/tcp_debug.c:1.10
--- rtems/cpukit/libnetworking/netinet/tcp_debug.c:1.9  Thu Feb 24 00:48:52 2011
+++ rtems/cpukit/libnetworking/netinet/tcp_debug.c      Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -34,7 +34,7 @@
</font> #include "config.h"
 #endif
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include "opt_inet.h"
 #include "opt_tcpdebug.h"
 

<font color='#006600'>diff -u rtems/cpukit/libnetworking/resolv.h:1.3 rtems/cpukit/libnetworking/resolv.h:1.4
--- rtems/cpukit/libnetworking/resolv.h:1.3     Thu May 10 02:29:13 2007
+++ rtems/cpukit/libnetworking/resolv.h Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -59,7 +59,7 @@
</font> 
 #include <sys/param.h>
 #include <sys/types.h>
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include <stdio.h>
 
 /*

<font color='#006600'>diff -u rtems/cpukit/libnetworking/rtems/rtems_bsdnet_internal.h:1.37 rtems/cpukit/libnetworking/rtems/rtems_bsdnet_internal.h:1.38
--- rtems/cpukit/libnetworking/rtems/rtems_bsdnet_internal.h:1.37       Wed Feb 17 18:24:25 2010
+++ rtems/cpukit/libnetworking/rtems/rtems_bsdnet_internal.h    Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -36,7 +36,7 @@
</font> /* make sure we get the network versions of these */
 #include <machine/types.h>
 #include <machine/param.h>
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #include <sys/time.h>
 

<font color='#006600'>diff -u rtems/cpukit/libnetworking/sys/libkern.h:1.4 rtems/cpukit/libnetworking/sys/libkern.h:1.5
--- rtems/cpukit/libnetworking/sys/libkern.h:1.4        Thu May 10 02:29:13 2007
+++ rtems/cpukit/libnetworking/sys/libkern.h    Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -37,7 +37,7 @@
</font> #ifndef _SYS_LIBKERN_H_
 #define        _SYS_LIBKERN_H_
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include <sys/types.h>
 
 /* BCD conversions. */

<font color='#006600'>diff -u rtems/cpukit/libnetworking/sys/mount.h:1.8 rtems/cpukit/libnetworking/sys/mount.h:1.9
--- rtems/cpukit/libnetworking/sys/mount.h:1.8  Wed Mar  2 06:06:46 2011
+++ rtems/cpukit/libnetworking/sys/mount.h      Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -116,7 +116,7 @@
</font> 
 #else /* !_KERNEL */
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #endif /* _KERNEL */
 

<font color='#006600'>diff -u rtems/cpukit/libnetworking/sys/poll.h:1.2 rtems/cpukit/libnetworking/sys/poll.h:1.3
--- rtems/cpukit/libnetworking/sys/poll.h:1.2   Thu May 10 02:29:13 2007
+++ rtems/cpukit/libnetworking/sys/poll.h       Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -31,7 +31,7 @@
</font> #ifndef _SYS_POLL_H_
 #define        _SYS_POLL_H_
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 /*
  * This file is intended to be compatible with the traditional poll.h.

<font color='#006600'>diff -u rtems/cpukit/libnetworking/sys/socket.h:1.17 rtems/cpukit/libnetworking/sys/socket.h:1.18
--- rtems/cpukit/libnetworking/sys/socket.h:1.17        Wed May 26 23:11:07 2010
+++ rtems/cpukit/libnetworking/sys/socket.h     Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -37,7 +37,7 @@
</font> #ifndef _SYS_SOCKET_H_
 #define        _SYS_SOCKET_H_
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include <rtems/bsdnet/_types.h>
 
 /*

<font color='#006600'>diff -u rtems/cpukit/libnetworking/sys/sysctl.h:1.14 rtems/cpukit/libnetworking/sys/sysctl.h:1.15
--- rtems/cpukit/libnetworking/sys/sysctl.h:1.14        Wed Mar  2 06:06:46 2011
+++ rtems/cpukit/libnetworking/sys/sysctl.h     Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -630,7 +630,7 @@
</font> int       sysctl_wire_old_buffer(struct sysctl_req *req, size_t len);
 
 #else  /* !_KERNEL */
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 __BEGIN_DECLS
 int    sysctl(int *, u_int, void *, size_t *, void *, size_t);

<font color='#006600'>diff -u rtems/cpukit/libnetworking/sys/syslog.h:1.5 rtems/cpukit/libnetworking/sys/syslog.h:1.6
--- rtems/cpukit/libnetworking/sys/syslog.h:1.5 Thu May 10 02:29:13 2007
+++ rtems/cpukit/libnetworking/sys/syslog.h     Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -178,7 +178,7 @@
</font> 
 #else /* not _KERNEL */
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include <stdarg.h>
 
 __BEGIN_DECLS

<font color='#006600'>diff -u rtems/cpukit/libnetworking/sys/systm.h:1.7 rtems/cpukit/libnetworking/sys/systm.h:1.8
--- rtems/cpukit/libnetworking/sys/systm.h:1.7  Mon Mar 19 00:40:12 2007
+++ rtems/cpukit/libnetworking/sys/systm.h      Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -45,6 +45,10 @@
</font> #include <rtems/rtems_bsdnet_internal.h> /* for __BSD_VA_LIST__ */
 #include <machine/cpufunc.h>
 
<font color='#000088'>+#if !defined(__dead2)
+#define __dead2         __attribute__((__noreturn__))
+#endif
+
</font> extern int securelevel;           /* system security level (see init(8)) */
 
 extern int cold;               /* nonzero if we are doing a cold boot */

<font color='#006600'>diff -u rtems/cpukit/libnetworking/sys/uio.h:1.7 rtems/cpukit/libnetworking/sys/uio.h:1.8
--- rtems/cpukit/libnetworking/sys/uio.h:1.7    Sun Dec  6 02:16:57 2009
+++ rtems/cpukit/libnetworking/sys/uio.h        Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -37,7 +37,7 @@
</font> #ifndef _SYS_UIO_H_
 #define        _SYS_UIO_H_
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include <sys/types.h>
 
 /*

<font color='#006600'>diff -u rtems/cpukit/libnetworking/sys/un.h:1.5 rtems/cpukit/libnetworking/sys/un.h:1.6
--- rtems/cpukit/libnetworking/sys/un.h:1.5     Thu May 10 02:29:13 2007
+++ rtems/cpukit/libnetworking/sys/un.h Thu Mar 24 04:31:25 2011
</font><font color='#997700'>@@ -37,7 +37,7 @@
</font> #ifndef _SYS_UN_H_
 #define _SYS_UN_H_
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include <rtems/bsdnet/_types.h>
 
 #ifndef _SA_FAMILY_T_DECLARED

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/auth.h:1.4 rtems/cpukit/librpc/include/rpc/auth.h:1.5
--- rtems/cpukit/librpc/include/rpc/auth.h:1.4  Thu May 10 02:29:13 2007
+++ rtems/cpukit/librpc/include/rpc/auth.h      Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -43,7 +43,7 @@
</font> 
 #ifndef _RPC_AUTH_H
 #define _RPC_AUTH_H
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include <sys/socket.h>
 
 #define MAX_AUTH_BYTES 400

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/auth_unix.h:1.4 rtems/cpukit/librpc/include/rpc/auth_unix.h:1.5
--- rtems/cpukit/librpc/include/rpc/auth_unix.h:1.4     Fri Aug  1 00:24:34 2008
+++ rtems/cpukit/librpc/include/rpc/auth_unix.h Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -46,7 +46,7 @@
</font> 
 #ifndef _RPC_AUTH_UNIX_H
 #define _RPC_AUTH_UNIX_H
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 /* The machine name is part of a credential; it may not exceed 255 bytes */
 #define MAX_MACHINE_NAME 255

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/clnt.h:1.11 rtems/cpukit/librpc/include/rpc/clnt.h:1.12
--- rtems/cpukit/librpc/include/rpc/clnt.h:1.11 Thu May 27 02:36:23 2010
+++ rtems/cpukit/librpc/include/rpc/clnt.h      Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -64,7 +64,7 @@
</font> #ifndef _RPC_CLNT_H_
 #define _RPC_CLNT_H_
 #include <rpc/clnt_stat.h>
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> #include <sys/un.h>
 
 /*

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/clnt_soc.h:1.3 rtems/cpukit/librpc/include/rpc/clnt_soc.h:1.4
--- rtems/cpukit/librpc/include/rpc/clnt_soc.h:1.3      Thu May 10 02:29:13 2007
+++ rtems/cpukit/librpc/include/rpc/clnt_soc.h  Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -47,7 +47,7 @@
</font>  * with TS-RPC.
  */
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #define UDPMSGSIZE      8800    /* rpc imposed limit on udp msg size */<span style="background-color: #FF0000">  </span>
 

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/pmap_clnt.h:1.5 rtems/cpukit/librpc/include/rpc/pmap_clnt.h:1.6
--- rtems/cpukit/librpc/include/rpc/pmap_clnt.h:1.5     Fri Aug  1 00:28:58 2008
+++ rtems/cpukit/librpc/include/rpc/pmap_clnt.h Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -62,7 +62,7 @@
</font> 
 #ifndef _RPC_PMAPCLNT_H
 #define _RPC_PMAPCLNT_H
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 __BEGIN_DECLS
 extern bool_t          pmap_set        (u_long, u_long, int, int);

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/pmap_prot.h:1.4 rtems/cpukit/librpc/include/rpc/pmap_prot.h:1.5
--- rtems/cpukit/librpc/include/rpc/pmap_prot.h:1.4     Fri Aug  1 00:30:04 2008
+++ rtems/cpukit/librpc/include/rpc/pmap_prot.h Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -70,7 +70,7 @@
</font> 
 #ifndef _RPC_PMAPPROT_H
 #define _RPC_PMAPPROT_H
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #define PMAPPORT               ((u_short)111)
 #define PMAPPROG               ((u_long)100000)

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/pmap_rmt.h:1.4 rtems/cpukit/librpc/include/rpc/pmap_rmt.h:1.5
--- rtems/cpukit/librpc/include/rpc/pmap_rmt.h:1.4      Fri Aug  1 00:30:55 2008
+++ rtems/cpukit/librpc/include/rpc/pmap_rmt.h  Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -40,7 +40,7 @@
</font> 
 #ifndef _RPC_PMAPRMT_H
 #define _RPC_PMAPRMT_H
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 struct rmtcallargs {
        u_long prog, vers, proc, arglen;

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/rpc_com.h:1.4 rtems/cpukit/librpc/include/rpc/rpc_com.h:1.5
--- rtems/cpukit/librpc/include/rpc/rpc_com.h:1.4       Thu May 10 02:38:27 2007
+++ rtems/cpukit/librpc/include/rpc/rpc_com.h   Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -46,7 +46,7 @@
</font> #ifndef _RPC_RPCCOM_H
 #define        _RPC_RPCCOM_H
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 /* #pragma ident       "@(#)rpc_com.h     1.11    93/07/05 SMI" */
 

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/rpcent.h:1.2 rtems/cpukit/librpc/include/rpc/rpcent.h:1.3
--- rtems/cpukit/librpc/include/rpc/rpcent.h:1.2        Sun Dec  7 22:41:26 2008
+++ rtems/cpukit/librpc/include/rpc/rpcent.h    Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -42,7 +42,7 @@
</font> #ifndef _RPC_RPCENT_H
 #define _RPC_RPCENT_H
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 /*     #pragma ident "@(#)rpcent.h   1.13    94/04/25 SMI"   */
 /*      @(#)rpcent.h 1.1 88/12/06 SMI   */

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/svc.h:1.10 rtems/cpukit/librpc/include/rpc/svc.h:1.11
--- rtems/cpukit/librpc/include/rpc/svc.h:1.10  Fri Aug  1 11:57:19 2008
+++ rtems/cpukit/librpc/include/rpc/svc.h       Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -39,7 +39,7 @@
</font> 
 #ifndef _RPC_SVC_H
 #define _RPC_SVC_H
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 /*
  * This interface must manage two items concerning remote procedure calling:

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/svc_soc.h:1.2 rtems/cpukit/librpc/include/rpc/svc_soc.h:1.3
--- rtems/cpukit/librpc/include/rpc/svc_soc.h:1.2       Thu May 10 02:29:14 2007
+++ rtems/cpukit/librpc/include/rpc/svc_soc.h   Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -39,7 +39,7 @@
</font> 
 #ifndef _RPC_SVC_SOC_H
 #define _RPC_SVC_SOC_H
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 /* #pragma ident   "@(#)svc_soc.h  1.11    94/04/25 SMI" */
 /*      svc_soc.h 1.8 89/05/01 SMI      */

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpc/xdr.h:1.11 rtems/cpukit/librpc/include/rpc/xdr.h:1.12
--- rtems/cpukit/librpc/include/rpc/xdr.h:1.11  Wed May 26 23:09:05 2010
+++ rtems/cpukit/librpc/include/rpc/xdr.h       Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -42,7 +42,7 @@
</font> #ifndef _RPC_XDR_H
 #define _RPC_XDR_H
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #include <rpc/types.h>
 

<font color='#006600'>diff -u rtems/cpukit/librpc/include/rpcsvc/ypclnt.h:1.5 rtems/cpukit/librpc/include/rpcsvc/ypclnt.h:1.6
--- rtems/cpukit/librpc/include/rpcsvc/ypclnt.h:1.5     Fri Aug  1 00:39:53 2008
+++ rtems/cpukit/librpc/include/rpcsvc/ypclnt.h Thu Mar 24 04:33:24 2011
</font><font color='#997700'>@@ -32,7 +32,7 @@
</font> #ifndef _RPCSVC_YPCLNT_H_
 #define _RPCSVC_YPCLNT_H_
 
<font color='#880000'>-#include <rtems/bsd/sys/cdefs.h>
</font><font color='#000088'>+#include <sys/cdefs.h>
</font> 
 #define YPERR_BADARGS  1               /* args to function are bad */
 #define YPERR_RPC      2               /* RPC failure */
</pre>
<p> </p>
<a name='cs5'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-03-24 Ralf Corsépius <ralf.corsepius@rtems.org>

        * libcsupport/include/sys/ioccom.h:
        Include <sys/cdefs.h> (Eliminate rtems/bsd/sys/cdefs.h).
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2789&r2=text&tr2=1.2790&diff_format=h">M</a></td><td width='1%'>1.2790</td><td width='100%'>cpukit/ChangeLog</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2789 rtems/cpukit/ChangeLog:1.2790
--- rtems/cpukit/ChangeLog:1.2789       Thu Mar 24 04:33:33 2011
+++ rtems/cpukit/ChangeLog      Thu Mar 24 04:36:37 2011
</font><font color='#997700'>@@ -1,5 +1,7 @@
</font> 2011-03-24        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * libcsupport/include/sys/ioccom.h:
+       Include <sys/cdefs.h> (Eliminate rtems/bsd/sys/cdefs.h).
</font>   * librpc/include/rpc/auth.h, librpc/include/rpc/auth_unix.h,
        librpc/include/rpc/clnt.h, librpc/include/rpc/clnt_soc.h,
        librpc/include/rpc/pmap_clnt.h, librpc/include/rpc/pmap_prot.h,
</pre>
<p> </p>
<a name='cs6'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>Add local version of __unused macro.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/shell/hexdump-odsyntax.c.diff?r1=text&tr1=1.10&r2=text&tr2=1.11&diff_format=h">M</a></td><td width='1%'>1.11</td><td width='100%'>cpukit/libmisc/shell/hexdump-odsyntax.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/shell/main_dd.c.diff?r1=text&tr1=1.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>cpukit/libmisc/shell/main_dd.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/libmisc/shell/hexdump-odsyntax.c:1.10 rtems/cpukit/libmisc/shell/hexdump-odsyntax.c:1.11
--- rtems/cpukit/libmisc/shell/hexdump-odsyntax.c:1.10  Fri Mar 26 12:18:43 2010
+++ rtems/cpukit/libmisc/shell/hexdump-odsyntax.c       Thu Mar 24 04:38:01 2011
</font><font color='#997700'>@@ -61,6 +61,10 @@
</font> 
 #define PADDING        "         "
 
<font color='#000088'>+#ifndef __unused
+#define __unused __attribute((__unused__))
+#endif
+
</font> #if RTEMS_REMOVED
 int odmode;
 #endif
<font color='#997700'>@@ -321,7 +325,6 @@
</font>           }
        }
 }
<font color='#880000'>-#define __unused
</font> 
 static const char *
 odformatfp(rtems_shell_hexdump_globals* globals, char fchar __unused, const char *fmt)

<font color='#006600'>diff -u rtems/cpukit/libmisc/shell/main_dd.c:1.5 rtems/cpukit/libmisc/shell/main_dd.c:1.6
--- rtems/cpukit/libmisc/shell/main_dd.c:1.5    Mon Jan 17 17:05:36 2011
+++ rtems/cpukit/libmisc/shell/main_dd.c        Thu Mar 24 04:38:01 2011
</font><font color='#997700'>@@ -76,6 +76,10 @@
</font> #include "dd.h"
 #include "extern-dd.h"
 
<font color='#000088'>+#ifndef __unused
+#define __unused __attribute((__unused__))
+#endif
+
</font> #define DD_DEFFILEMODE 0
 
 static void dd_close(rtems_shell_dd_globals* globals);
</pre>
<p> </p>
<a name='cs7'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-03-24 Ralf Corsépius <ralf.corsepius@rtems.org>

        * libmisc/shell/hexdump-odsyntax.c, libmisc/shell/main_dd.c:
        Add local version of __unused macro.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2790&r2=text&tr2=1.2791&diff_format=h">M</a></td><td width='1%'>1.2791</td><td width='100%'>cpukit/ChangeLog</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2790 rtems/cpukit/ChangeLog:1.2791
--- rtems/cpukit/ChangeLog:1.2790       Thu Mar 24 04:36:37 2011
+++ rtems/cpukit/ChangeLog      Thu Mar 24 04:38:27 2011
</font><font color='#997700'>@@ -1,5 +1,7 @@
</font> 2011-03-24        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * libmisc/shell/hexdump-odsyntax.c, libmisc/shell/main_dd.c:
+       Add local version of __unused macro.
</font>   * libcsupport/include/sys/ioccom.h:
        Include <sys/cdefs.h> (Eliminate rtems/bsd/sys/cdefs.h).
        * librpc/include/rpc/auth.h, librpc/include/rpc/auth_unix.h,
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>