Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/proc/thread.h

    r7e7b791 rdf58e44  
    140140        bool interrupted;
    141141       
     142        /**
     143         * If true, the scheduler will print a stack trace
     144         * to the kernel console upon scheduling this thread.
     145         */
     146        bool btrace;
     147       
    142148        /** If true, thread_join_timeout() cannot be used on this thread. */
    143149        bool detached;
     
    190196       
    191197#ifdef CONFIG_UDEBUG
    192         /**
    193          * If true, the scheduler will print a stack trace
    194          * to the kernel console upon scheduling this thread.
    195          */
    196         bool btrace;
    197        
    198198        /** Debugging stuff */
    199199        udebug_thread_t udebug;
     
    245245extern void thread_update_accounting(bool);
    246246extern bool thread_exists(thread_t *);
    247 
    248 #ifdef CONFIG_UDEBUG
    249247extern void thread_stack_trace(thread_id_t);
    250 #endif
    251248
    252249/** Fpu context slab cache. */
     
    259256extern sysarg_t sys_thread_get_id(thread_id_t *);
    260257extern sysarg_t sys_thread_usleep(uint32_t);
    261 extern sysarg_t sys_thread_udelay(uint32_t);
    262258
    263259#endif
Note: See TracChangeset for help on using the changeset viewer.