Change order of thread-context members

Because 'stack' and 'stack_base' are related to each other, it makes
sense to locate both members close to each other.
This commit is contained in:
Norman Feske 2013-01-07 17:58:33 +01:00
parent 0a084ebe52
commit d90b0464b8
1 changed files with 5 additions and 5 deletions

View File

@ -99,11 +99,6 @@ namespace Genode {
*/ */
long stack[]; long stack[];
/**
* Pointer to corresponding 'Thread_base' object
*/
Thread_base *thread_base;
/** /**
* Virtual address of the start of the stack * Virtual address of the start of the stack
* *
@ -113,6 +108,11 @@ namespace Genode {
*/ */
addr_t stack_base; addr_t stack_base;
/**
* Pointer to corresponding 'Thread_base' object
*/
Thread_base *thread_base;
/** /**
* Dataspace containing the backing store for the thread context * Dataspace containing the backing store for the thread context
* *