HomeSort by relevance Sort by last modified time
    Searched defs:THREAD_SIZE (Results 1 - 2 of 2) sorted by null

  /external/kernel-headers/original/asm-arm/
thread_info.h 19 #define THREAD_SIZE 8192
20 #define THREAD_START_SP (THREAD_SIZE - 8)
94 return (struct thread_info *)(sp & ~(THREAD_SIZE - 1));
  /external/kernel-headers/original/asm-x86/
thread_info_32.h 57 #define THREAD_SIZE (4096)
59 #define THREAD_SIZE (8192)
62 #define STACK_WARN (THREAD_SIZE/8)
93 return (struct thread_info *)(current_stack_pointer & ~(THREAD_SIZE - 1));
99 __get_free_pages(GFP_KERNEL| __GFP_ZERO, get_order(THREAD_SIZE)))
102 __get_free_pages(GFP_KERNEL, get_order(THREAD_SIZE)))
105 #define free_thread_info(info) free_pages((unsigned long)(info), get_order(THREAD_SIZE))
111 movl $-THREAD_SIZE, reg; \
116 andl $-THREAD_SIZE, reg

Completed in 26 milliseconds