Changeset 5f88544 in rtems
- Timestamp:
- 08/15/06 11:08:14 (17 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 16fd5a9
- Parents:
- 0f8eaed1
- Location:
- cpukit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r0f8eaed1 r5f88544 1 2006-08-15 Joel Sherrill <joel@OARcorp.com> 2 3 * libnetworking/kern/kern_sysctl.c: Change int to int32_t. 4 * libnetworking/net/if_loop.c: Add cast to long. 5 These plus a patch to machine/param.h let the h8300 build multilib. 6 1 7 2006-08-10 Till Straumann <strauman@slac.stanford.edu> 2 8 -
cpukit/libnetworking/kern/kern_sysctl.c
r0f8eaed1 r5f88544 147 147 */ 148 148 if (oidp->oid_number == OID_AUTO) { 149 static int newoid = CTL_AUTO_START;149 static int32_t newoid = CTL_AUTO_START; 150 150 151 151 oidp->oid_number = newoid++; -
cpukit/libnetworking/net/if_loop.c
r0f8eaed1 r5f88544 234 234 */ 235 235 rt->rt_rmx.rmx_recvpipe = 236 rt->rt_rmx.rmx_sendpipe = 3 *LOMTU;236 rt->rt_rmx.rmx_sendpipe = 3L * (long)LOMTU; 237 237 } 238 238 }
Note: See TracChangeset
for help on using the changeset viewer.