* [PATCH] stubdom: add stub functions to reduce qemu patches
@ 2008-07-09 14:27 Samuel Thibault
2008-07-09 14:49 ` Samuel Thibault
0 siblings, 1 reply; 2+ messages in thread
From: Samuel Thibault @ 2008-07-09 14:27 UTC (permalink / raw)
To: xen-devel
stubdom: add stub functions to reduce qemu patches
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
diff -r fda7bb635f7e extras/mini-os/include/posix/fcntl.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/extras/mini-os/include/posix/fcntl.h Wed Jul 09 15:05:08 2008 +0100
@@ -0,0 +1,11 @@
+#ifndef _POSIX_FCNTL_H
+#define _POSIX_FCNTL_H
+
+#include_next <fcntl.h>
+
+#define F_ULOCK 0
+#define F_LOCK 1
+#define F_TLOCK 2
+#define F_TEST 3
+
+#endif /* _POSIX_FCNTL_H */
diff -r fda7bb635f7e extras/mini-os/lib/sys.c
--- a/extras/mini-os/lib/sys.c Wed Jul 09 13:30:00 2008 +0100
+++ b/extras/mini-os/lib/sys.c Wed Jul 09 15:05:08 2008 +0100
@@ -1186,6 +1186,7 @@
/* Not supported by FS yet. */
unsupported_function_crash(link);
unsupported_function(int, readlink, -1);
+unsupported_function_crash(umask);
/* We could support that. */
unsupported_function_log(int, chdir, -1);
@@ -1208,6 +1209,13 @@
unsupported_function(int, sigaltstack, -1);
unsupported_function_crash(kill);
+/* Unsupported */
+unsupported_function_crash(pipe);
+unsupported_function_crash(fork);
+unsupported_function_crash(execv);
+unsupported_function_crash(waitpid);
+unsupported_function_crash(lockf);
+unsupported_function_crash(sysconf);
unsupported_function(int, tcsetattr, -1);
unsupported_function(int, tcgetattr, 0);
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] stubdom: add stub functions to reduce qemu patches
2008-07-09 14:27 [PATCH] stubdom: add stub functions to reduce qemu patches Samuel Thibault
@ 2008-07-09 14:49 ` Samuel Thibault
0 siblings, 0 replies; 2+ messages in thread
From: Samuel Thibault @ 2008-07-09 14:49 UTC (permalink / raw)
To: xen-devel
Re-send with related fix
stubdom: add stub functions to reduce qemu patches
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
diff -r fda7bb635f7e extras/mini-os/include/posix/fcntl.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/extras/mini-os/include/posix/fcntl.h Wed Jul 09 15:05:08 2008 +0100
@@ -0,0 +1,11 @@
+#ifndef _POSIX_FCNTL_H
+#define _POSIX_FCNTL_H
+
+#include_next <fcntl.h>
+
+#define F_ULOCK 0
+#define F_LOCK 1
+#define F_TLOCK 2
+#define F_TEST 3
+
+#endif /* _POSIX_FCNTL_H */
diff -r 9afe01a0e160 extras/mini-os/lib/sys.c
--- a/extras/mini-os/lib/sys.c Wed Jul 09 13:01:16 2008 +0100
+++ b/extras/mini-os/lib/sys.c Wed Jul 09 15:48:02 2008 +0100
@@ -1185,6 +1185,7 @@
/* Not supported by FS yet. */
unsupported_function_crash(link);
unsupported_function(int, readlink, -1);
+unsupported_function_crash(umask);
/* We could support that. */
unsupported_function_log(int, chdir, -1);
@@ -1207,6 +1208,16 @@
unsupported_function(int, sigaltstack, -1);
unsupported_function_crash(kill);
+/* Unsupported */
+unsupported_function_crash(pipe);
+unsupported_function_crash(fork);
+unsupported_function_crash(execv);
+unsupported_function_crash(waitpid);
+unsupported_function_crash(lockf);
+unsupported_function_crash(sysconf);
+unsupported_function(int, tcsetattr, -1);
+unsupported_function(int, tcgetattr, 0);
+
/* Linuxish abi for the Caml runtime, don't support */
unsupported_function_log(struct dirent *, readdir64, NULL);
unsupported_function_log(int, getrusage, -1);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-07-09 14:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-09 14:27 [PATCH] stubdom: add stub functions to reduce qemu patches Samuel Thibault
2008-07-09 14:49 ` Samuel Thibault
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.