Changeset a074b4f in mainline for uspace


Ignore:
Timestamp:
2010-01-23T19:19:18Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
03333bc
Parents:
336db295
Message:

Implement fault notifications and task monitoring service.

Location:
uspace
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r336db295 ra074b4f  
    4848        srv/loader \
    4949        srv/ns \
     50        srv/taskmon \
    5051        srv/vfs \
    5152        srv/bd/ata_bd \
  • uspace/app/init/init.c

    r336db295 ra074b4f  
    257257       
    258258        spawn("/srv/devfs");
     259        spawn("/srv/taskmon");
    259260       
    260261        if (!mount_devfs()) {
  • uspace/app/taskdump/taskdump.c

    r336db295 ra074b4f  
    4747#define LINE_BYTES 16
    4848
    49 
    5049#define DBUF_SIZE 4096
    5150static uint8_t data_buf[DBUF_SIZE];
     
    222221        printf("Threads:\n");
    223222        for (i = 0; i < n_threads; i++) {
    224                 printf(" [%d] (hash 0x%lx)\n", 1+i, thash_buf[i]);
     223                printf(" [%d] hash: 0x%lx\n", 1+i, thash_buf[i]);
    225224        }
    226225        putchar('\n');
Note: See TracChangeset for help on using the changeset viewer.