- 论坛徽章:
- 5
|
刚才无聊的时候看了一下,确实没有thread_info了,一下子想起这个帖子了,回来看了一下,原来是这样的
呵呵
好像前段时间还有thread_info呢
- struct thread_info *thread = current_thread_info();
- struct task_struct *tsk = thread->task;
- /* how to get the current stack pointer from C */
- register unsigned long current_stack_pointer asm("esp") __used;
- /* how to get the thread information struct from C */
- static inline struct thread_info *current_thread_info(void)
- {
- return (struct thread_info *)
- (current_stack_pointer & ~(THREAD_SIZE - 1));
- }
- /* how to get the current stack pointer from C */
- static inline unsigned long current_stack_pointer(void)
- {
- unsigned long sp;
- asm("mov sp,%0; ":"=r" (sp));
- return sp;
- }
复制代码
[ 本帖最后由 T-Bagwell 于 2009-12-21 00:17 编辑 ] |
|