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

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <linux/mm.h>
  2. #include <linux/sched.h>
  3. #include <asm/pgtable.h>
  4. #include <asm/uaccess.h>
  5. static struct fs_struct init_fs = INIT_FS;
  6. static struct files_struct init_files = INIT_FILES;
  7. static struct signal_struct init_signals = INIT_SIGNALS;
  8. struct mm_struct init_mm = INIT_MM(init_mm);
  9. /* .text section in head.S is aligned at 8k boundry and this gets linked
  10.  * right after that so that the init_task_union is aligned properly as well.
  11.  * If this is not aligned on a 8k boundry, then you should change code
  12.  * in etrap.S which assumes it.
  13.  */
  14. __asm__(".section ".text",#allocn");
  15. union task_union init_task_union =
  16. { INIT_TASK(init_task_union.task) };