Changeset 859

Show
Ignore:
Timestamp:
08/21/08 21:53:36 (3 years ago)
Author:
mwhitworth
Message:

Add currHandle field to thread structure.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/trunk/include/task.h

    r668 r859  
    2727 
    2828struct Process; 
     29struct JournalHandle; 
    2930 
    3031#define THR_USED_MATH 1 
     
    4142        struct FpuSave fpuData; 
    4243        struct Context* currContext; 
     44        struct JournalHandle* currHandle; /* Each thread can run its own transaction. */ 
    4345}; 
    4446