Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/proc/thread.c

    r137691a r22e6802  
    7676
    7777/** Thread states */
    78 const char *thread_states[] = {
     78char *thread_states[] = {
    7979        "Invalid",
    8080        "Running",
     
    264264
    265265        atomic_inc(&nrdy);
    266         // FIXME: Why is the avg value never read?
    267266        avg = atomic_get(&nrdy) / config.cpu_active;
    268267        atomic_inc(&cpu->nrdy);
     
    289288 */
    290289thread_t *thread_create(void (* func)(void *), void *arg, task_t *task,
    291     int flags, const char *name, bool uncounted)
     290    int flags, char *name, bool uncounted)
    292291{
    293292        thread_t *t;
Note: See TracChangeset for help on using the changeset viewer.