Changeset fb9b0b0 in mainline


Ignore:
Timestamp:
2008-09-17T12:35:49Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0108984a
Parents:
9a1b20c
Message:

Let trace display advice when udebug is not compiled in.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/trace.c

    r9a1b20c rfb9b0b0  
    7676        rc = ipc_connect_kbox(task_id);
    7777        printf("-> %d\n", rc);
     78
     79        if (rc == ENOTSUP) {
     80                printf("You do not have userspace debugging support "
     81                    "compiled in the kernel.\n");
     82                printf("Compile kernel with 'Support for userspace debuggers' "
     83                    "(CONFIG_UDEBUG) enabled.\n");
     84        }
     85
    7886        phoneid = rc;
    7987        if (rc < 0) return rc;
Note: See TracChangeset for help on using the changeset viewer.