aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/sys-x86_64/util/mk_thread_user.c
diff options
context:
space:
mode:
authorAl Viro <viro@parcelfarce.linux.theplanet.co.uk>2005-05-05 16:15:26 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-05 16:36:35 -0700
commit2b8b611e9a4725ae558af4fa48cf7d9e2193e7ed (patch)
tree82b70f850a945b9fac3b94ed634178f73a07457b /arch/um/sys-x86_64/util/mk_thread_user.c
parent[PATCH] uml: cross-build support : kernel_offsets (diff)
downloadlinux-dev-2b8b611e9a4725ae558af4fa48cf7d9e2193e7ed.tar.xz
linux-dev-2b8b611e9a4725ae558af4fa48cf7d9e2193e7ed.zip
[PATCH] uml: cross-build support : mk_thread
mk_thread converted Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to '')
-rw-r--r--arch/um/sys-x86_64/util/mk_thread_user.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/arch/um/sys-x86_64/util/mk_thread_user.c b/arch/um/sys-x86_64/util/mk_thread_user.c
deleted file mode 100644
index 7989725568b8..000000000000
--- a/arch/um/sys-x86_64/util/mk_thread_user.c
+++ /dev/null
@@ -1,30 +0,0 @@
-#include <stdio.h>
-
-void print_head(void)
-{
- printf("/*\n");
- printf(" * Generated by mk_thread\n");
- printf(" */\n");
- printf("\n");
- printf("#ifndef __UM_THREAD_H\n");
- printf("#define __UM_THREAD_H\n");
- printf("\n");
-}
-
-void print_constant_ptr(char *name, int value)
-{
- printf("#define %s(task) ((unsigned long *) "
- "&(((char *) (task))[%d]))\n", name, value);
-}
-
-void print_constant(char *name, char *type, int value)
-{
- printf("#define %s(task) *((%s *) &(((char *) (task))[%d]))\n", name, type,
- value);
-}
-
-void print_tail(void)
-{
- printf("\n");
- printf("#endif\n");
-}