Staging
v0.8.1
https://github.com/torvalds/linux
Revision 2ffc1ccad85e8c2e81a6a4beb390fb4ce143256b authored by Dmitry Torokhov on 05 August 2006, 02:53:37 UTC, committed by Dmitry Torokhov on 05 August 2006, 02:53:37 UTC
By using milliseconds instead of jiffies to calculate acceleration
factor we make the code immune to changes in HZ.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
1 parent c3c38fb
Raw File
Tip revision: 2ffc1ccad85e8c2e81a6a4beb390fb4ce143256b authored by Dmitry Torokhov on 05 August 2006, 02:53:37 UTC
Input: ati_remote - use msec instead of jiffies
Tip revision: 2ffc1cc
futex.h
#ifndef _ASM_FUTEX_H
#define _ASM_FUTEX_H

#ifdef __KERNEL__

#include <linux/futex.h>
#include <asm/errno.h>
#include <asm/uaccess.h>

extern int futex_atomic_op_inuser(int encoded_op, int __user *uaddr);

static inline int
futex_atomic_cmpxchg_inatomic(int __user *uaddr, int oldval, int newval)
{
	return -ENOSYS;
}

#endif
#endif
back to top