Subversion Repositories HelenOS-historic

Rev

Rev 578 | Rev 581 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 578 Rev 579
Line 97... Line 97...
97
            symbol = "not found";
97
            symbol = "not found";
98
        printf("%d %s 0x%p(%s)\n",i,exc_table[i].name,
98
        printf("%d %s 0x%p(%s)\n",i,exc_table[i].name,
99
               exc_table[i].f,symbol);     
99
               exc_table[i].f,symbol);     
100
        if (!((i+1) % 20)) {
100
        if (!((i+1) % 20)) {
101
            printf("Press any key to continue.");
101
            printf("Press any key to continue.");
-
 
102
            spinlock_unlock(&exctbl_lock);
102
            getc(stdin);
103
            getc(stdin);
-
 
104
            spinlock_lock(&exctbl_lock);
103
            printf("\n");
105
            printf("\n");
104
        }
106
        }
105
    }
107
    }
106
    spinlock_unlock(&exctbl_lock);
108
    spinlock_unlock(&exctbl_lock);
107
   
109