- Timestamp:
- 2010-01-23T19:19:18Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 03333bc
- Parents:
- 336db295
- Location:
- uspace
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r336db295 ra074b4f 48 48 srv/loader \ 49 49 srv/ns \ 50 srv/taskmon \ 50 51 srv/vfs \ 51 52 srv/bd/ata_bd \ -
uspace/app/init/init.c
r336db295 ra074b4f 257 257 258 258 spawn("/srv/devfs"); 259 spawn("/srv/taskmon"); 259 260 260 261 if (!mount_devfs()) { -
uspace/app/taskdump/taskdump.c
r336db295 ra074b4f 47 47 #define LINE_BYTES 16 48 48 49 50 49 #define DBUF_SIZE 4096 51 50 static uint8_t data_buf[DBUF_SIZE]; … … 222 221 printf("Threads:\n"); 223 222 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]); 225 224 } 226 225 putchar('\n');
Note:
See TracChangeset
for help on using the changeset viewer.