|
|
| version 1.40, 2004/01/30 05:42:18 | version 1.41, 2004/02/10 07:34:43 |
|---|---|
| Line 76 struct intrframe; | Line 76 struct intrframe; |
| * token you are requesting. | * token you are requesting. |
| */ | */ |
| typedef struct lwkt_token { | typedef struct lwkt_token { |
| int t_cpu; /* the current owner of the token */ | struct globaldata *t_cpu; /* the current owner of the token */ |
| int t_reqcpu; /* return ownership to this cpu on release */ | struct globaldata *t_reqcpu;/* return ownership to this cpu on release */ |
| int t_gen; /* generation number */ | int t_gen; /* generation number */ |
| } lwkt_token; | } lwkt_token; |