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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This is where we statically allocate and initialize the initial
  3.  * task.
  4.  *
  5.  * Copyright (C) 1999 Hewlett-Packard Co
  6.  * Copyright (C) 1999 David Mosberger-Tang <davidm@hpl.hp.com>
  7.  */
  8. #include <linux/init.h>
  9. #include <linux/mm.h>
  10. #include <linux/sched.h>
  11. #include <asm/uaccess.h>
  12. #include <asm/pgtable.h>
  13. static struct fs_struct init_fs = INIT_FS;
  14. static struct files_struct init_files = INIT_FILES;
  15. static struct signal_struct init_signals = INIT_SIGNALS;
  16. struct mm_struct init_mm = INIT_MM(init_mm);
  17. /*
  18.  * Initial task structure.
  19.  *
  20.  * We need to make sure that this is page aligned due to the way
  21.  * process stacks are handled. This is done by having a special
  22.  * "init_task" linker map entry..
  23.  */
  24. union task_union init_task_union
  25. __attribute__((section("init_task"))) =
  26. { INIT_TASK(init_task_union.task) };