repo.or.cz
/
linux-2.6
/
linux-mips.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use a spinlock to protect the vdma data structures.
[linux-2.6/linux-mips.git]
/
include
/
asm-i386
/
current.h
blob
d97328951f5f027b767c28cf44b44f1abfd52aff
1
#ifndef _I386_CURRENT_H
2
#define _I386_CURRENT_H
3
4
#include <linux/thread_info.h>
5
6
struct
task_struct
;
7
8
static
inline
struct
task_struct
*
get_current
(
void
)
9
{
10
return
current_thread_info
()->
task
;
11
}
12
13
#define current get_current()
14
15
#endif
/* !(_I386_CURRENT_H) */