summaryrefslogtreecommitdiff
path: root/hurd/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'hurd/thread.h')
-rw-r--r--hurd/thread.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/hurd/thread.h b/hurd/thread.h
index fd504b0..c583723 100644
--- a/hurd/thread.h
+++ b/hurd/thread.h
@@ -212,6 +212,21 @@ thread_start (addr_t thread)
}
static inline error_t
+thread_start_sp_ip (addr_t thread, uintptr_t sp, uintptr_t ip)
+{
+ struct hurd_thread_exregs_in in;
+ struct hurd_thread_exregs_out out;
+
+ in.sp = sp;
+ in.ip = ip;
+
+ return rm_thread_exregs (ADDR_VOID, thread,
+ HURD_EXREGS_START | HURD_EXREGS_ABORT_IPC
+ | HURD_EXREGS_SET_SP_IP,
+ in, &out);
+}
+
+static inline error_t
thread_stop (addr_t thread)
{
struct hurd_thread_exregs_in in;