Revision f46d1604ed84e5a4107bae1db7283e3a76d72ace authored by Mattia Dongili on 12 August 2007, 07:20:26 UTC, committed by Len Brown on 24 August 2007, 04:56:59 UTC
Signed-off-by: Mattia Dongili <malattia@linux.it>
Signed-off-by: Len Brown <len.brown@intel.com>
1 parent b377fd3
Raw File
a.out.h
/*
 * include/asm-xtensa/a.out.h
 *
 * Dummy a.out file. Xtensa does not support the a.out format, but the kernel
 * seems to depend on it.
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2001 - 2005 Tensilica Inc.
 */

#ifndef _XTENSA_A_OUT_H
#define _XTENSA_A_OUT_H

/* Note: the kernel needs the a.out definitions, even if only ELF is used. */

#define STACK_TOP	TASK_SIZE
#define STACK_TOP_MAX	STACK_TOP

struct exec
{
  unsigned long a_info;
  unsigned a_text;
  unsigned a_data;
  unsigned a_bss;
  unsigned a_syms;
  unsigned a_entry;
  unsigned a_trsize;
  unsigned a_drsize;
};

#endif /* _XTENSA_A_OUT_H */
back to top