Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Rename bits/m68k-vdso.h to m68k-vdso.h (bug 14912).
It was noted in
<https://sourceware.org/ml/libc-alpha/2012-09/msg00305.html> that the
bits/*.h naming scheme should only be used for installed headers.
This patch renames bits/m68k-vdso.h to plain m68k-vdso.h to follow
that convention.

	[BZ #14912]
	* sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Move to ...
	* sysdeps/unix/sysv/linux/m68k/m68k-vdso.h: ...here.
	* sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h: Include
	<m68k-vdso.h> instead of <bits/m68k-vdso.h>.
	* sysdeps/unix/sysv/linux/m68k/init-first.c: Likewise.
	* sysdeps/unix/sysv/linux/m68k/m68k-helpers.S: Likewise.
	* sysdeps/unix/sysv/linux/m68k/m68k-vdso.c: Likewise.
  • Loading branch information
Joseph Myers committed Sep 4, 2015
1 parent f834e6d commit 0f4341f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
@@ -1,3 +1,14 @@
2015-09-04 Joseph Myers <joseph@codesourcery.com>

[BZ #14912]
* sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Move to ...
* sysdeps/unix/sysv/linux/m68k/m68k-vdso.h: ...here.
* sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h: Include
<m68k-vdso.h> instead of <bits/m68k-vdso.h>.
* sysdeps/unix/sysv/linux/m68k/init-first.c: Likewise.
* sysdeps/unix/sysv/linux/m68k/m68k-helpers.S: Likewise.
* sysdeps/unix/sysv/linux/m68k/m68k-vdso.c: Likewise.

2015-09-03 Roland McGrath <roland@hack.frob.com>

* elf/Makefile (test-xfail-tst-protected1a): New variable.
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h
Expand Up @@ -21,7 +21,7 @@

#include <stdint.h>
#include <sysdep.h>
#include <bits/m68k-vdso.h>
#include <m68k-vdso.h>

/* Coldfire has no atomic compare-and-exchange operation, but the
kernel provides userspace atomicity operations. Use them. */
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/m68k/init-first.c
Expand Up @@ -22,7 +22,7 @@
#ifdef SHARED

#include <dl-vdso.h>
#include <bits/m68k-vdso.h>
#include <m68k-vdso.h>

static inline void
_libc_vdso_platform_setup (void)
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/m68k/m68k-helpers.S
Expand Up @@ -34,7 +34,7 @@
<http://www.gnu.org/licenses/>. */

#include <sysdep.h>
#include <bits/m68k-vdso.h>
#include <m68k-vdso.h>

.text

Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/m68k/m68k-vdso.c
Expand Up @@ -18,7 +18,7 @@

#ifdef SHARED

#include <bits/m68k-vdso.h>
#include <m68k-vdso.h>

/* Because these pointers are used from other libraries than libc,
they are exported at GLIBC_PRIVATE version.
Expand Down
File renamed without changes.

0 comments on commit 0f4341f

Please sign in to comment.