Changeset 24345a5 in mainline for kernel/generic/include/proc/task.h


Ignore:
Timestamp:
2008-11-08T10:01:59Z (17 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
24d6efc
Parents:
7faabb7
Message:

Set meaningful names for loaded programs. Now 'tasks' kconsole command is much less obscure.

File:
1 edited

Legend:

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

    r7faabb7 r24345a5  
    5555#include <udebug/udebug.h>
    5656
     57#define TASK_NAME_BUFLEN        20
     58
    5759struct thread;
    5860
     
    6870         */
    6971        SPINLOCK_DECLARE(lock);
    70        
    71         char *name;
     72
     73        char name[TASK_NAME_BUFLEN];
    7274        /** List of threads contained in this task. */
    7375        link_t th_head;
Note: See TracChangeset for help on using the changeset viewer.