Rev 2479 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2479 | Rev 2482 | ||
---|---|---|---|
Line 47... | Line 47... | ||
47 | /** TCB (Thread Control Block) struct. |
47 | /** TCB (Thread Control Block) struct. |
48 | * |
48 | * |
49 | * TLS starts just after this struct. |
49 | * TLS starts just after this struct. |
50 | */ |
50 | */ |
51 | typedef struct { |
51 | typedef struct { |
52 | /** psthread data. */ |
52 | /** Fibril data. */ |
53 | void *pst_data; |
53 | void *fibril_data; |
54 | } tcb_t; |
54 | } tcb_t; |
55 | 55 | ||
56 | 56 | ||
57 | /** Sets TLS address to the r9 register. |
57 | /** Sets TLS address to the r9 register. |
58 | * |
58 | * |