Changeset 5f88544 in rtems


Ignore:
Timestamp:
08/15/06 11:08:14 (17 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
16fd5a9
Parents:
0f8eaed1
Message:

2006-08-15 Joel Sherrill <joel@…>

  • libnetworking/kern/kern_sysctl.c: Change int to int32_t.
  • libnetworking/net/if_loop.c: Add cast to long. These plus a patch to machine/param.h let the h8300 build multilib.
Location:
cpukit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r0f8eaed1 r5f88544  
     12006-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
    172006-08-10      Till Straumann <strauman@slac.stanford.edu>
    28
  • cpukit/libnetworking/kern/kern_sysctl.c

    r0f8eaed1 r5f88544  
    147147         */
    148148        if (oidp->oid_number == OID_AUTO) {
    149                 static int newoid = CTL_AUTO_START;
     149                static int32_t newoid = CTL_AUTO_START;
    150150
    151151                oidp->oid_number = newoid++;
  • cpukit/libnetworking/net/if_loop.c

    r0f8eaed1 r5f88544  
    234234                 */
    235235                rt->rt_rmx.rmx_recvpipe =
    236                         rt->rt_rmx.rmx_sendpipe = 3 * LOMTU;
     236                        rt->rt_rmx.rmx_sendpipe = 3L * (long)LOMTU;
    237237        }
    238238}
Note: See TracChangeset for help on using the changeset viewer.