futex_bits.h (sys_futex0): Change operands "op" and "val" to int.

* config/linux/x86/futex_bits.h (sys_futex0) [__x86_64__]: Change
	operands "op" and "val" to int.

	* config/linux/sh/futex_bits.h (sys_futex0) Change operands
	"op" and "val" to int.

	* config/linux/alpha/futex_bits.h (sys_futex0) Change operands
	"op" and "val" to int.

	* config/linux/futex.cc (gtm_futex_wait, gtm_futex_wake):
	Declare as static int.
	(FUTEX_PRIVATE_FLAG): Remove L suffix.
	* config/linux/futex_bits.h (sys_futex0) Change operand "op" to int.

	Revert:
	* config/linux/x86/futex.h (sys_futex0) [!__x86_64__]:
	Change operand "op" to long.

From-SVN: r223844
This commit is contained in:
Uros Bizjak 2015-05-28 19:36:47 +02:00 committed by Uros Bizjak
parent ac3efa775f
commit d778b5a09c
6 changed files with 32 additions and 11 deletions

View file

@ -1,8 +1,29 @@
2015-05-27 Uros Bizjak <ubizjak@gmail.com>
* config/linux/x86/futex_bits.h (sys_futex0) [!__x86_64__]:
Change operand "op" to long.
[__PIC__]: Remove sys_futex0 function.
* config/linux/x86/futex_bits.h (sys_futex0) [__x86_64__]: Change
operands "op" and "val" to int.
2015-05-27 Uros Bizjak <ubizjak@gmail.com>
* config/linux/sh/futex_bits.h (sys_futex0) Change operands
"op" and "val" to int.
2015-05-27 Uros Bizjak <ubizjak@gmail.com>
* config/linux/alpha/futex_bits.h (sys_futex0) Change operands
"op" and "val" to int.
2015-05-27 Uros Bizjak <ubizjak@gmail.com>
* config/linux/futex.cc (gtm_futex_wait, gtm_futex_wake):
Declare as static int.
(FUTEX_PRIVATE_FLAG): Remove L suffix.
* config/linux/futex_bits.h (sys_futex0) Change operand "op" to int.
2015-05-27 Uros Bizjak <ubizjak@gmail.com>
* config/linux/x86/futex_bits.h (sys_futex0) [__PIC__]: Remove
sys_futex0 function.
2015-05-13 Michael Haubenwallner <michael.haubenwallner@ssi-schaefer.com>

View file

@ -29,7 +29,7 @@
#endif
static inline long
sys_futex0 (std::atomic<int> *addr, long op, long val)
sys_futex0 (std::atomic<int> *addr, int op, int val)
{
register long sc_0 __asm__("$0");
register long sc_16 __asm__("$16");

View file

@ -33,11 +33,11 @@ namespace GTM HIDDEN {
#define FUTEX_WAIT 0
#define FUTEX_WAKE 1
#define FUTEX_PRIVATE_FLAG 128L
#define FUTEX_PRIVATE_FLAG 128
static long int gtm_futex_wait = FUTEX_WAIT | FUTEX_PRIVATE_FLAG;
static long int gtm_futex_wake = FUTEX_WAKE | FUTEX_PRIVATE_FLAG;
static int gtm_futex_wait = FUTEX_WAIT | FUTEX_PRIVATE_FLAG;
static int gtm_futex_wake = FUTEX_WAKE | FUTEX_PRIVATE_FLAG;
void

View file

@ -34,7 +34,7 @@
#include <errno.h>
static inline long
sys_futex0 (std::atomic<int> *addr, long op, long val)
sys_futex0 (std::atomic<int> *addr, int op, int val)
{
long res = syscall (SYS_futex, (int*) addr, op, val, 0);
if (__builtin_expect (res == -1, 0))

View file

@ -32,7 +32,7 @@
trapa #0x14; or r0,r0; or r0,r0; or r0,r0; or r0,r0; or r0,r0"
static inline long
sys_futex0 (std::atomic<int> *addr, long op, long val)
sys_futex0 (std::atomic<int> *addr, int op, int val)
{
int __status;
register long __r3 asm ("r3") = SYS_futex;

View file

@ -28,7 +28,7 @@
# endif
static inline long
sys_futex0 (std::atomic<int> *addr, long op, long val)
sys_futex0 (std::atomic<int> *addr, int op, int val)
{
register long r10 __asm__("%r10") = 0;
long res;
@ -47,7 +47,7 @@ sys_futex0 (std::atomic<int> *addr, long op, long val)
# endif
static inline long
sys_futex0 (std::atomic<int> *addr, long op, int val)
sys_futex0 (std::atomic<int> *addr, int op, int val)
{
long res;