Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Apr 2007 15:54:31 GMT
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 117368 for review
Message-ID:  <200704041554.l34FsV3b079917@repoman.freebsd.org>

index | next in thread | raw e-mail

http://perforce.freebsd.org/chv.cgi?CH=117368

Change 117368 by gonzo@gonzo_jeeves on 2007/04/04 15:54:15

	o Add casuword and casuword32 stubs.

Affected files ...

.. //depot/projects/mips2/src/sys/mips/mips/support.S#10 edit

Differences ...

==== //depot/projects/mips2/src/sys/mips/mips/support.S#10 (text+ko) ====

@@ -272,6 +272,29 @@
 END(fuword32)
 
 /*
+ * casuword(9)
+ * <v0>u_long casuword(<a0>u_long *p, <a1>u_long oldval, <a2>u_long newval)
+ */
+ENTRY(casuword)
+	break
+	li	v0, -1
+	jr	ra
+	nop
+END(casuword)
+
+/*
+ * casuword32(9)
+ * <v0>uint32_t casuword(<a0>uint32_t *p, <a1>uint32_t oldval, 
+ *							<a2>uint32_t newval)
+ */
+ENTRY(casuword32)
+	break
+	li	v0, -1
+	jr	ra
+	nop
+END(casuword32)
+
+/*
  * Stubs for copy(9) XXX
      copyin()      Copies len bytes of data from the user-space address uaddr
                    to the kernel-space address kaddr.


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200704041554.l34FsV3b079917>