Subversion Repositories HelenOS-historic

Rev

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

Rev 1694 Rev 1721
Line 42... Line 42...
42
#include <kernel/ipc/irq.h>
42
#include <kernel/ipc/irq.h>
43
 
43
 
44
/* Pointer to klog area */
44
/* Pointer to klog area */
45
static char *klog;
45
static char *klog;
46
 
46
 
47
void interrupt_received(ipc_callid_t callid, ipc_call_t *call)
47
static void interrupt_received(ipc_callid_t callid, ipc_call_t *call)
48
{
48
{
49
    int i;
49
    int i;
50
   
50
   
51
    async_serialize_start();
51
    async_serialize_start();
52
    for (i=0; klog[i + IPC_GET_ARG1(*call)] && i < IPC_GET_ARG2(*call); i++)
52
    for (i=0; klog[i + IPC_GET_ARG1(*call)] && i < IPC_GET_ARG2(*call); i++)