Subversion Repositories HelenOS

Rev

Rev 4342 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4342 Rev 4345
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