Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update.
2002-10-03  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/unix/sysv/linux/net/route.h: Include bits/wordsize.h.
	(struct rtentry): Make rt_pad4 6 bytes long if __WORDSIZE == 64.
	* sysdeps/unix/sysv/linux/alpha/Dist: Remove net/route.h.
	* sysdeps/unix/sysv/linux/alpha/net/route.h: Remove.
	* sysdeps/unix/sysv/linux/ia64/Dist: Remove net/route.h.
	* sysdeps/unix/sysv/linux/ia64/net/route.h: Remove.
	* sysdeps/unix/sysv/linux/s390/Dist: Remove net/route.h.
	* sysdeps/unix/sysv/linux/s390/net/route.h: Remove.
  • Loading branch information
Ulrich Drepper committed Oct 3, 2002
1 parent 393db3d commit f8b0689
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 429 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
@@ -1,3 +1,14 @@
2002-10-03 Jakub Jelinek <jakub@redhat.com>

* sysdeps/unix/sysv/linux/net/route.h: Include bits/wordsize.h.
(struct rtentry): Make rt_pad4 6 bytes long if __WORDSIZE == 64.
* sysdeps/unix/sysv/linux/alpha/Dist: Remove net/route.h.
* sysdeps/unix/sysv/linux/alpha/net/route.h: Remove.
* sysdeps/unix/sysv/linux/ia64/Dist: Remove net/route.h.
* sysdeps/unix/sysv/linux/ia64/net/route.h: Remove.
* sysdeps/unix/sysv/linux/s390/Dist: Remove net/route.h.
* sysdeps/unix/sysv/linux/s390/net/route.h: Remove.

2002-10-03 Ulrich Drepper <drepper@redhat.com>

* libio/freopen.c: Don't re-set _wide_data element if the stream
Expand Down
1 change: 0 additions & 1 deletion sysdeps/unix/sysv/linux/alpha/Dist
Expand Up @@ -9,7 +9,6 @@ ipc_priv.h
kernel_sigaction.h
kernel_stat.h
kernel_termios.h
net/route.h
oldglob.c
rt_sigaction.S
sizes.h
Expand Down
140 changes: 0 additions & 140 deletions sysdeps/unix/sysv/linux/alpha/net/route.h

This file was deleted.

1 change: 0 additions & 1 deletion sysdeps/unix/sysv/linux/ia64/Dist
Expand Up @@ -6,7 +6,6 @@ ioperm.c
ldd-rewrite.sed
__start_context.S
ucontext_i.h
net/route.h
sys/procfs.h
sys/io.h
sys/rse.h
Expand Down
140 changes: 0 additions & 140 deletions sysdeps/unix/sysv/linux/ia64/net/route.h

This file was deleted.

7 changes: 6 additions & 1 deletion sysdeps/unix/sysv/linux/net/route.h
@@ -1,4 +1,4 @@
/* Copyright (C) 1997 Free Software Foundation, Inc.
/* Copyright (C) 1997, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand All @@ -25,6 +25,7 @@
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <bits/wordsize.h>


/* This structure gets passed by the SIOCADDRT and SIOCDELRT calls. */
Expand All @@ -39,7 +40,11 @@ struct rtentry
unsigned long int rt_pad3;
unsigned char rt_tos;
unsigned char rt_class;
#if __WORDSIZE == 64
short int rt_pad4[3];
#else
short int rt_pad4;
#endif
short int rt_metric; /* +1 for binary compatibility! */
char *rt_dev; /* Forcing the device at add. */
unsigned long int rt_mtu; /* Per route MTU/Window. */
Expand Down
1 change: 0 additions & 1 deletion sysdeps/unix/sysv/linux/s390/Dist
@@ -1,5 +1,4 @@
ldd-rewrite.sed
net/route.h
sys/elf.h
sys/procfs.h
sys/user.h

0 comments on commit f8b0689

Please sign in to comment.