Subversion Repositories freemyipod

Rev

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

Rev 549 Rev 608
Line 80... Line 80...
80
                ("thread_type", thread_type),
80
                ("thread_type", thread_type),
81
                ("priority", c_uint8),
81
                ("priority", c_uint8),
82
                ("cpuload", c_uint8),
82
                ("cpuload", c_uint8),
83
               ]
83
               ]
84
 
84
 
-
 
85
class mutex(ExtendedCStruct):
-
 
86
    _fields_ = [("owner", c_uint32),
-
 
87
                ("waiters", c_uint32),
-
 
88
                ("count", c_int32),
-
 
89
                ]
-
 
90
 
-
 
91
class wakeup(ExtendedCStruct):
-
 
92
    _fields_ = [("waiter", c_uint32),
-
 
93
                ("signalled", c_uint32),
-
 
94
               ]
-
 
95
 
-
 
96
 
85
swtypes = {
97
swtypes = {
86
    0: "invalid",
98
    0: "invalid",
87
    1: "emBIOS Debugger",
99
    1: "emBIOS Debugger",
88
    2: "emCORE Debugger"
100
    2: "emCORE Debugger"
89
}
101
}