Subversion Repositories freemyipod

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
173 farthen 1
thread_state = (
2
    "THREAD_FREE",
3
    "THREAD_SUSPENDED",
4
    "THREAD_READY",
5
    "THREAD_RUNNING",
6
    "THREAD_BLOCKED",
7
    "THREAD_DEFUNCT",
8
    "THREAD_DEFUNCT_ACK"
9
)
10
 
11
thread_block = (
12
    "THREAD_NOT_BLOCKED",
13
    "THREAD_BLOCK_SLEEP",
14
    "THREAD_BLOCK_MUTEX",
15
    "THREAD_BLOCK_WAKEUP",
16
    "THREAD_DEFUNCT_STKOV",
17
    "THREAD_DEFUNCT_PANIC"
18
)
19
 
20
thread_type = (
21
    "USER_THREAD",
22
    "OS_THREAD",
23
    "ORE_THREAD"
24
)
25
 
171 farthen 26
hwtypes = {
27
    0: "invalid",
28
    0x47324e49: "iPod nano 2g",
29
    0x47334e49: "iPod nano 3g",
30
    0x47344e49: "iPod nano 4g",
31
    0x4c435049: "iPod classic"
32
}
33
 
34
swtypes = {
35
    0: "invalid",
36
    1: "emBIOS Debugger"
37
}
38
 
39
responsecodes = {
40
    0: "invalid",
41
    1: "ok",
42
    2: "unsupported",
43
    3: "busy"
44
}