init_task.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #include <linux/mm.h>
  2. #include <linux/sched.h>
  3. #include <linux/init.h>
  4. #include <linux/config.h>
  5. #include <asm/uaccess.h>
  6. #include <asm/pgtable.h>
  7. #include <asm/desc.h>
  8. static struct fs_struct init_fs = INIT_FS;
  9. static struct files_struct init_files = INIT_FILES;
  10. static struct signal_struct init_signals = INIT_SIGNALS;
  11. struct mm_struct init_mm = INIT_MM(init_mm);
  12. /*
  13.  * Initial task structure.
  14.  *
  15.  * We need to make sure that this is 8192-byte aligned due to the
  16.  * way process stacks are handled. This is done by having a special
  17.  * "init_task" linker map entry..
  18.  */
  19. union task_union init_task_union 
  20. __attribute__((__section__(".data.init_task"))) =
  21. { INIT_TASK(init_task_union.task) };
  22. /*
  23.  * per-CPU TSS segments. Threads are completely 'soft' on Linux,
  24.  * no more per-task TSS's. The TSS size is kept cacheline-aligned
  25.  * so they are allowed to end up in the .data.cacheline_aligned
  26.  * section. Since TSS's are completely CPU-local, we want them
  27.  * on exact cacheline boundaries, to eliminate cacheline ping-pong.
  28.  */ 
  29. struct tss_struct init_tss[NR_CPUS] __cacheline_aligned;
  30. #define ALIGN_TO_4K __attribute__((section(".data.init_task")))
  31. pgd_t boot_vmalloc_pgt[512]  ALIGN_TO_4K;