Ignore:
File:
1 edited

Legend:

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

    rdf58e44 r7e7b791  
    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        
    148142        /** If true, thread_join_timeout() cannot be used on this thread. */
    149143        bool detached;
     
    196190       
    197191#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
    247249extern void thread_stack_trace(thread_id_t);
     250#endif
    248251
    249252/** Fpu context slab cache. */
     
    256259extern sysarg_t sys_thread_get_id(thread_id_t *);
    257260extern sysarg_t sys_thread_usleep(uint32_t);
     261extern sysarg_t sys_thread_udelay(uint32_t);
    258262
    259263#endif
Note: See TracChangeset for help on using the changeset viewer.