Subversion Repositories HelenOS

Rev

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

Rev 4338 Rev 4345
Line 48... Line 48...
48
#define KLOG_SIZE PAGE_SIZE
48
#define KLOG_SIZE PAGE_SIZE
49
 
49
 
50
/* Pointer to klog area */
50
/* Pointer to klog area */
51
static char *klog;
51
static char *klog;
52
 
52
 
53
static void console_wait(void)
-
 
54
{
-
 
55
    while (get_cons_phone() < 0)
-
 
56
        usleep(50000);  // FIXME
-
 
57
}
-
 
58
 
-
 
59
static void interrupt_received(ipc_callid_t callid, ipc_call_t *call)
53
static void interrupt_received(ipc_callid_t callid, ipc_call_t *call)
60
{
54
{
61
    async_serialize_start();
55
    async_serialize_start();
62
   
56
   
63
    size_t klog_start = (size_t) IPC_GET_ARG1(*call);
57
    size_t klog_start = (size_t) IPC_GET_ARG1(*call);