Subversion Repositories freemyipod

Rev

Rev 54 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 54 Rev 71
Line 83... Line 83...
83
    struct scheduler_thread* queue_next;
83
    struct scheduler_thread* queue_next;
84
    uint32_t timeout;
84
    uint32_t timeout;
85
    uint32_t blocked_since;
85
    uint32_t blocked_since;
86
    void* blocked_by;
86
    void* blocked_by;
87
    uint32_t* stack;
87
    uint32_t* stack;
-
 
88
    int err_no;
88
    enum thread_block block_type;
89
    enum thread_block block_type;
89
    enum thread_type type;
90
    enum thread_type type;
90
    uint8_t priority;
91
    uint8_t priority;
91
    uint8_t cpuload;
92
    uint8_t cpuload;
92
};
93
};