Export i386_get_current_iframe() so it can be used in arch_user_debugger.cpp.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11472 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-02-24 15:49:41 +00:00
parent 98dbeb36df
commit 05916979f9
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ extern "C" {
void i386_push_iframe(struct thread *t, struct iframe *frame);
void i386_pop_iframe(struct thread *t);
struct iframe *i386_get_current_iframe(void);
void i386_return_from_signal();
void i386_end_return_from_signal();

View File

@ -78,7 +78,7 @@ i386_pop_iframe(struct thread *thread)
* from standard kernel threads.
*/
static struct iframe *
struct iframe *
i386_get_current_iframe(void)
{
struct thread *thread = thread_get_current_thread();