aclinux.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * Name: aclinux.h - OS specific defines, etc.
  4.  *       $Revision: 14 $
  5.  *
  6.  *****************************************************************************/
  7. /*
  8.  *  Copyright (C) 2000, 2001 R. Byron Moore
  9.  *
  10.  *  This program is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  23.  */
  24. #ifndef __ACLINUX_H__
  25. #define __ACLINUX_H__
  26. #define ACPI_OS_NAME                "Linux"
  27. #define ACPI_USE_SYSTEM_CLIBRARY
  28. #ifdef __KERNEL__
  29. #include <linux/config.h>
  30. #include <linux/string.h>
  31. #include <linux/kernel.h>
  32. #include <linux/ctype.h>
  33. #include <asm/system.h>
  34. #include <asm/atomic.h>
  35. #include <asm/div64.h>
  36. #define strtoul simple_strtoul
  37. #else
  38. #include <stdarg.h>
  39. #include <string.h>
  40. #include <stdlib.h>
  41. #include <ctype.h>
  42. #endif
  43. /* Linux uses GCC */
  44. #include "acgcc.h"
  45. #undef DEBUGGER_THREADING
  46. #define DEBUGGER_THREADING          DEBUGGER_SINGLE_THREADED
  47. #endif /* __ACLINUX_H__ */