Changeset a6d4ceb in mainline for generic/include/proc/thread.h


Ignore:
Timestamp:
2006-04-13T14:27:30Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
963074b3
Parents:
1ace9ea
Message:

Move arch/thread.h to arch/proc/thread.h on all architectures.
Replace ARCH_THREAD_DATA with new thread_arch_t arch on all architectures.
Similarily, add task_arch_t arch on all architectures.
On amd64 and ia32, grow the TSS segment by 64K + 1B to support IO port
permission bitmap. For the same reason, define per task IO port permission bitmaps
on ia32 and amd64.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/include/proc/thread.h

    r1ace9ea ra6d4ceb  
    3030#define __THREAD_H__
    3131
    32 #include <arch/thread.h>
     32#include <arch/proc/thread.h>
    3333#include <synch/spinlock.h>
    3434#include <arch/context.h>
     
    118118        __u32 tid;                              /**< Thread ID. */
    119119       
    120         ARCH_THREAD_DATA;                       /**< Architecture-specific data. */
     120        thread_arch_t arch;                     /**< Architecture-specific data. */
    121121
    122122        __u8 *kstack;                           /**< Thread's kernel stack. */
Note: See TracChangeset for help on using the changeset viewer.