Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/proc/task.h

    ra307beb ra000878c  
    5757#include <mm/as.h>
    5858
    59 #include <ps/taskinfo.h>
     59#define TASK_NAME_BUFLEN        20
    6060
    6161struct thread;
     
    9494        answerbox_t answerbox;  /**< Communication endpoint */
    9595        phone_t phones[IPC_MAX_PHONES];
    96         task_ipc_info_t ipc_info; /**< IPC statistics */
    9796        /**
    9897         * Active asynchronous messages. It is used for limiting uspace to
     
    123122       
    124123        /** Accumulated accounting. */
    125         uint64_t ucycles;
    126         uint64_t kcycles;
     124        uint64_t cycles;
    127125} task_t;
    128126
     
    136134extern task_t *task_find_by_id(task_id_t id);
    137135extern int task_kill(task_id_t id);
    138 extern void task_get_accounting(task_t *t, uint64_t *ucycles, uint64_t *kcycles);
     136extern uint64_t task_get_accounting(task_t *t);
    139137extern void task_print_list(void);
    140138
Note: See TracChangeset for help on using the changeset viewer.