Subversion Repositories HelenOS

Rev

Rev 3018 | Rev 3429 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3018 Rev 3100
Line 340... Line 340...
340
    cons_printf("Breakpoint Debugger\n");
340
    cons_printf("Breakpoint Debugger\n");
341
    cons_printf("Press 'c' to connect\n");
341
    cons_printf("Press 'c' to connect\n");
342
    while ((i = getchar()) != 'c')
342
    while ((i = getchar()) != 'c')
343
        putchar(i);
343
        putchar(i);
344
 
344
 
345
    taskid = /*13 mips32*/14;
345
    taskid = /*13 mips32*/13;
346
    rc = task_connect(taskid);
346
    rc = task_connect(taskid);
347
    if (rc < 0) {
347
    if (rc < 0) {
348
        cons_printf("Failed to connect to task %d\n", taskid);
348
        cons_printf("Failed to connect to task %d\n", taskid);
349
        return;
349
        return;
350
    }
350
    }