Subversion Repositories HelenOS

Rev

Rev 3343 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3343 Rev 4679
Line 45... Line 45...
45
 
45
 
46
/** CPU structure.
46
/** CPU structure.
47
 *
47
 *
48
 * There is one structure like this for every processor.
48
 * There is one structure like this for every processor.
49
 */
49
 */
50
typedef struct {
50
typedef struct cpu {
51
    SPINLOCK_DECLARE(lock);
51
    SPINLOCK_DECLARE(lock);
52
 
52
 
53
    tlb_shootdown_msg_t tlb_messages[TLB_MESSAGE_QUEUE_LEN];
53
    tlb_shootdown_msg_t tlb_messages[TLB_MESSAGE_QUEUE_LEN];
54
    count_t tlb_messages_count;
54
    count_t tlb_messages_count;
55
   
55