remove IPC_SYS_DBGMSGS again

This commit is contained in:
dhewg 2009-04-10 15:33:43 +02:00 committed by bushing
parent 993bda8a49
commit a5c87a6127
2 changed files with 0 additions and 5 deletions

4
ipc.c
View File

@ -164,10 +164,6 @@ static void process_in(void)
case IPC_SYS_PING:
ipc_post(req->code, req->tag, 0);
break;
case IPC_SYS_DBGMSG:
ipc_post(req->code, req->tag, 1,
gecko_enable_console(req->args[0]));
break;
case IPC_SYS_WRITE32:
write32(req->args[0], req->args[1]);
break;

1
ipc.h
View File

@ -16,7 +16,6 @@
#define IPC_SYS_PING 0x0000
#define IPC_SYS_JUMP 0x0001
#define IPC_SYS_DBGMSG 0x0002
#define IPC_SYS_WRITE32 0x0100
#define IPC_SYS_WRITE16 0x0101
#define IPC_SYS_WRITE8 0x0102