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/uaccess.h>
  4. #include <asm/pgtable.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. /*
  10.  * Initial task structure.
  11.  *
  12.  * We need to make sure that this is 8192-byte aligned due to the
  13.  * way process stacks are handled. This is done by making sure
  14.  * the linker maps this in the .text segment right after head.S,
  15.  * and making head.S ensure the proper alignment.
  16.  *
  17.  * The things we do for performance..
  18.  */
  19. union task_union init_task_union
  20. __attribute__((__section__(".data.init_task"))) =
  21. { INIT_TASK(init_task_union.task) };