Rev 1787 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1787 | Rev 1854 | ||
---|---|---|---|
Line 30... | Line 30... | ||
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | /** @file |
32 | /** @file |
33 | */ |
33 | */ |
34 | 34 | ||
35 | #ifndef __ia32_THREAD_H__ |
35 | #ifndef KERN_ia32_THREAD_H_ |
36 | #define __ia32_THREAD_H__ |
36 | #define KERN_ia32_THREAD_H_ |
37 | 37 | ||
38 | #include <arch/types.h> |
38 | #include <arch/types.h> |
39 | 39 | ||
40 | typedef struct { |
40 | typedef struct { |
41 | unative_t tls; |
41 | unative_t tls; |
42 | } thread_arch_t; |
42 | } thread_arch_t; |
43 | 43 | ||
- | 44 | #define thr_constructor_arch(t) |
|
- | 45 | #define thr_destructor_arch(t) |
|
- | 46 | ||
44 | #endif |
47 | #endif |
45 | 48 | ||
46 | /** @} |
49 | /** @} |
47 | */ |
50 | */ |
48 | - |