[ALSA] remove unused snd_minor.name field
[deliverable/linux.git] / include / asm-um / processor-x86_64.h
CommitLineData
1da177e4
LT
1/*
2 * Copyright 2003 PathScale, Inc.
3 *
4 * Licensed under the GPL
5 */
6
7#ifndef __UM_PROCESSOR_X86_64_H
8#define __UM_PROCESSOR_X86_64_H
9
c578455a
BS
10/* include faultinfo structure */
11#include "sysdep/faultinfo.h"
1da177e4
LT
12
13struct arch_thread {
c578455a
BS
14 unsigned long debugregs[8];
15 int debugregs_seq;
16 struct faultinfo faultinfo;
1da177e4
LT
17};
18
19/* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
20extern inline void rep_nop(void)
21{
22 __asm__ __volatile__("rep;nop": : :"memory");
23}
24
25#define cpu_relax() rep_nop()
26
c578455a
BS
27#define INIT_ARCH_THREAD { .debugregs = { [ 0 ... 7 ] = 0 }, \
28 .debugregs_seq = 0, \
29 .faultinfo = { 0, 0, 0 } }
30
aa6758d4
PBG
31static inline void arch_flush_thread(struct arch_thread *thread)
32{
33}
34
35static inline void arch_copy_thread(struct arch_thread *from,
36 struct arch_thread *to)
37{
38}
39
c578455a 40#include "asm/arch/user.h"
1da177e4
LT
41
42#define current_text_addr() \
43 ({ void *pc; __asm__("movq $1f,%0\n1:":"=g" (pc)); pc; })
44
45#define ARCH_IS_STACKGROW(address) \
46 (address + 128 >= UPT_SP(&current->thread.regs.regs))
47
fad1c45c
AG
48#define KSTK_EIP(tsk) KSTK_REG(tsk, RIP)
49#define KSTK_ESP(tsk) KSTK_REG(tsk, RSP)
50
1da177e4
LT
51#include "asm/processor-generic.h"
52
53#endif
This page took 0.270782 seconds and 5 git commands to generate.