summaryrefslogtreecommitdiff
path: root/lang/icon/patches/patch-af
blob: 20e628621e6fb45fe9da0b3e117096fce5ab65e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
$NetBSD: patch-af,v 1.10 2003/06/29 23:06:47 jtb Exp $

--- /dev/null
+++ config/netbsd/i386.c
@@ -0,0 +1,23 @@
+/*
+ * coswitch for i386 architecture
+ */
+
+int
+coswitch (int *old_cs, int *new_cs, int first)
+{
+	asm ("movl 8(%ebp),%eax");
+	asm ("movl %esp,0(%eax)");
+	asm ("movl %ebp,4(%eax)");
+	asm ("movl 12(%ebp),%eax");
+
+	if (first == 0) {                    /* this is the first activation */
+		asm ("movl 0(%eax),%esp");
+		asm ("movl $0,%ebp");
+		new_context (0, 0);
+		syserr ("new_context() returned in coswitch");
+	}
+	else {
+		asm ("movl 0(%eax),%esp");
+		asm ("movl 4(%eax),%ebp");
+	}
+}