Added i386_get_current_iframe(), returning the innermost iframe, if any.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27165 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -17,6 +17,7 @@ extern "C" {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct iframe *i386_get_user_iframe(void);
|
struct iframe *i386_get_user_iframe(void);
|
||||||
|
struct iframe *i386_get_current_iframe(void);
|
||||||
void *x86_next_page_directory(struct thread *from, struct thread *to);
|
void *x86_next_page_directory(struct thread *from, struct thread *to);
|
||||||
|
|
||||||
void x86_restart_syscall(struct iframe* frame);
|
void x86_restart_syscall(struct iframe* frame);
|
||||||
|
|||||||
@@ -152,6 +152,12 @@ i386_get_user_iframe(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
struct iframe *
|
||||||
|
i386_get_current_iframe(void)
|
||||||
|
{
|
||||||
|
return get_current_iframe();
|
||||||
|
}
|
||||||
|
|
||||||
void *
|
void *
|
||||||
x86_next_page_directory(struct thread *from, struct thread *to)
|
x86_next_page_directory(struct thread *from, struct thread *to)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user