aboutsummaryrefslogtreecommitdiffstats
path: root/linux-2.6-xen-sparse/include
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-02-08 17:27:30 +0000
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-02-08 17:27:30 +0000
commit6f7ae0fe6f83653ebd286e8c263b9fa98a736d7d (patch)
tree1d6d60f141b91e95b734b4011e0d00cd11571849 /linux-2.6-xen-sparse/include
parent7ae4132e264e187b3a436b6185d2b3c97350123c (diff)
parenta9a8f70bdf30e1b7ae7d50f3b86788fc93329ff9 (diff)
downloadxen-6f7ae0fe6f83653ebd286e8c263b9fa98a736d7d.tar.gz
xen-6f7ae0fe6f83653ebd286e8c263b9fa98a736d7d.tar.bz2
xen-6f7ae0fe6f83653ebd286e8c263b9fa98a736d7d.zip
Merge with xen-ia64-unstable.hg.
Diffstat (limited to 'linux-2.6-xen-sparse/include')
-rw-r--r--linux-2.6-xen-sparse/include/asm-i386/a.out.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/linux-2.6-xen-sparse/include/asm-i386/a.out.h b/linux-2.6-xen-sparse/include/asm-i386/a.out.h
deleted file mode 100644
index 66db22938f..0000000000
--- a/linux-2.6-xen-sparse/include/asm-i386/a.out.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef __I386_A_OUT_H__
-#define __I386_A_OUT_H__
-
-struct exec
-{
- unsigned long a_info; /* Use macros N_MAGIC, etc for access */
- unsigned a_text; /* length of text, in bytes */
- unsigned a_data; /* length of data, in bytes */
- unsigned a_bss; /* length of uninitialized data area for file, in bytes */
- unsigned a_syms; /* length of symbol table data in file, in bytes */
- unsigned a_entry; /* start address */
- unsigned a_trsize; /* length of relocation info for text, in bytes */
- unsigned a_drsize; /* length of relocation info for data, in bytes */
-};
-
-#define N_TRSIZE(a) ((a).a_trsize)
-#define N_DRSIZE(a) ((a).a_drsize)
-#define N_SYMSIZE(a) ((a).a_syms)
-
-#ifdef __KERNEL__
-
-#define STACK_TOP (TASK_SIZE - 3*PAGE_SIZE)
-
-#endif
-
-#endif /* __A_OUT_GNU_H__ */