Subversion Repositories HelenOS-historic

Rev

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

Rev 1702 Rev 1780
Line 69... Line 69...
69
 
69
 
70
 
70
 
71
/** Process Interval Timer interrupt. */
71
/** Process Interval Timer interrupt. */
72
void it_interrupt(void)
72
void it_interrupt(void)
73
{
73
{
74
    __s64 c;
74
    int64_t c;
75
    __s64 m;
75
    int64_t m;
76
   
76
   
77
    eoi_write(EOI);
77
    eoi_write(EOI);
78
   
78
   
79
    m=itm_read();
79
    m=itm_read();
80
   
80