Chris Lattner | 1f80115 | 2003-11-27 20:47:16 +0000 | [diff] [blame^] | 1 | struct i387_soft_struct { |
2 | long cwd; | ||||
3 | }; | ||||
4 | union i387_union { | ||||
5 | struct i387_soft_struct soft; | ||||
6 | }; | ||||
7 | struct thread_struct { | ||||
8 | union i387_union i387; | ||||
9 | }; | ||||
10 | void _init_task_union(void) { | ||||
11 | struct thread_struct thread = (struct thread_struct) { {{0}} }; | ||||
12 | } |