#ifdef CONFIG_IRQSTACKS #define THREAD_SIZE_ORDER 2/* PA-RISC requires at least 16k stack */ #else #define THREAD_SIZE_ORDER 3/* PA-RISC requires at least 32k stack */ #endif
/* Be sure to hunt all references to this down when you change the size of
* the kernel stack */ #define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER) #define THREAD_SHIFT (PAGE_SHIFT + THREAD_SIZE_ORDER)
/* * thread information flags
*/ #define TIF_SYSCALL_TRACE 0/* syscall trace active */ #define TIF_SIGPENDING 1/* signal pending */ #define TIF_NEED_RESCHED 2/* rescheduling necessary */ #define TIF_POLLING_NRFLAG 3/* true if poll_idle() is polling TIF_NEED_RESCHED */ #define TIF_32BIT 4/* 32 bit binary */ #define TIF_MEMDIE 5/* is terminating due to OOM killer */ #define TIF_NOTIFY_SIGNAL 6/* signal notifications exist */ #define TIF_SYSCALL_AUDIT 7/* syscall auditing active */ #define TIF_NOTIFY_RESUME 8/* callback before returning to user */ #define TIF_SINGLESTEP 9/* single stepping? */ #define TIF_BLOCKSTEP 10/* branch stepping? */ #define TIF_SECCOMP 11/* secure computing */ #define TIF_SYSCALL_TRACEPOINT 12/* syscall tracepoint instrumentation */ #define TIF_NONBLOCK_WARNING 13/* warned about wrong O_NONBLOCK usage */
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.