Rev 3883 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3883 | Rev 4032 | ||
|---|---|---|---|
| Line 177... | Line 177... | ||
| 177 | } |
177 | } |
| 178 | bootinfo.taskmap.tasks[bootinfo.taskmap.count].addr = |
178 | bootinfo.taskmap.tasks[bootinfo.taskmap.count].addr = |
| 179 | base + top; |
179 | base + top; |
| 180 | bootinfo.taskmap.tasks[bootinfo.taskmap.count].size = |
180 | bootinfo.taskmap.tasks[bootinfo.taskmap.count].size = |
| 181 | components[i].size; |
181 | components[i].size; |
| - | 182 | strncpy(bootinfo.taskmap.tasks[ |
|
| - | 183 | bootinfo.taskmap.count].name, components[i].name, |
|
| - | 184 | BOOTINFO_TASK_NAME_BUFLEN); |
|
| 182 | bootinfo.taskmap.count++; |
185 | bootinfo.taskmap.count++; |
| 183 | } |
186 | } |
| 184 | top += components[i].size; |
187 | top += components[i].size; |
| 185 | } |
188 | } |
| 186 | 189 | ||