Changeset 78219ad1 in rtems
- Timestamp:
- Dec 2, 2004, 8:24:30 PM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 46a1aa9
- Parents:
- dac1edb
- Location:
- cpukit
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
rdac1edb r78219ad1 1 2004-12-02 Joel Sherrill <joel@OARcorp.com> 2 3 * libnetworking/kern/kern_sysctl.c, libnetworking/netinet/ip_mroute.c, 4 libnetworking/sys/socketvar.h: Remove warnings. 5 1 6 2004-12-02 Ralf Corsepius <ralf.corsepius@rtems.org> 2 7 -
cpukit/libnetworking/kern/kern_sysctl.c
rdac1edb r78219ad1 393 393 if ((kind & CTLTYPE) == CTLTYPE_NODE) { 394 394 /* Allocate space for children */ 395 SYSCTL_CHILDREN(oidp) = malloc(sizeof(struct sysctl_oid_list), 395 /* Later accessed by macro SYSCTL_CHILDREN(oidp) */ 396 oidp->oid_arg1 = malloc(sizeof(struct sysctl_oid_list), 396 397 M_SYSCTLOID, M_WAITOK); 397 398 SLIST_INIT(SYSCTL_CHILDREN(oidp)); -
cpukit/libnetworking/netinet/ip_mroute.c
rdac1edb r78219ad1 18 18 #include <sys/queue.h> 19 19 #include <sys/systm.h> 20 #include <sys/sysctl.h> 20 21 #include <sys/mbuf.h> 21 22 #include <sys/socket.h> -
cpukit/libnetworking/sys/socketvar.h
rdac1edb r78219ad1 209 209 struct sockaddr; 210 210 struct stat; 211 struct file; 211 212 212 213 /*
Note: See TracChangeset
for help on using the changeset viewer.