Displaying 2 results from an estimated 2 matches for "09ba2f2".
2014 Mar 11
0
[PATCH] add mips64 support
...signed long __unused;
Does it make sense to save all the floating-point state even though
klibc doesn't have any floating point support?
> +/*
> + * Symbolic register names for 32 bit ABI
> + */
64-bit?
> diff --git a/usr/include/fcntl.h b/usr/include/fcntl.h
> index bbd6917..09ba2f2 100644
> --- a/usr/include/fcntl.h
> +++ b/usr/include/fcntl.h
> @@ -9,7 +9,7 @@
> #include <klibc/compiler.h>
> #include <klibc/seek.h>
> #include <sys/types.h>
> -#if defined(__mips__) && !defined(__mips64__)
> +#if defined(__mips__) &&...
2014 Mar 11
4
[PATCH] add mips64 support
..., framesize, rpc
+
+/*
+ * END - mark end of function
+ */
+#define END(function) \
+ .end function; \
+ .size function,.-function
+
+
+#endif /* _MACHINE_ASM_H */
diff --git a/usr/include/fcntl.h b/usr/include/fcntl.h
index bbd6917..09ba2f2 100644
--- a/usr/include/fcntl.h
+++ b/usr/include/fcntl.h
@@ -9,7 +9,7 @@
#include <klibc/compiler.h>
#include <klibc/seek.h>
#include <sys/types.h>
-#if defined(__mips__) && !defined(__mips64__)
+#if defined(__mips__) && !defined(__mips64)
# include <klibc...