Subversion Repositories HelenOS

Rev

Rev 3790 | Rev 4132 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3790 Rev 4085
Line 40... Line 40...
40
 
40
 
41
#include <interrupt.h>
41
#include <interrupt.h>
42
#include <debug.h>
42
#include <debug.h>
43
#include <console/kconsole.h>
43
#include <console/kconsole.h>
44
#include <console/console.h>
44
#include <console/console.h>
45
#include <console/chardev.h>
-
 
46
#include <console/cmd.h>
45
#include <console/cmd.h>
47
#include <panic.h>
46
#include <panic.h>
48
#include <print.h>
47
#include <print.h>
49
#include <symtab.h>
48
#include <symtab.h>
50
 
49
 
Line 146... Line 145...
146
#endif
145
#endif
147
       
146
       
148
        if (((i + 1) % 20) == 0) {
147
        if (((i + 1) % 20) == 0) {
149
            printf(" -- Press any key to continue -- ");
148
            printf(" -- Press any key to continue -- ");
150
            spinlock_unlock(&exctbl_lock);
149
            spinlock_unlock(&exctbl_lock);
151
            getc(stdin);
150
            _getc(stdin);
152
            spinlock_lock(&exctbl_lock);
151
            spinlock_lock(&exctbl_lock);
153
            printf("\n");
152
            printf("\n");
154
        }
153
        }
155
    }
154
    }
156
   
155