3d697930dd
- writing to a PTY master side blocks if there is not already a blocked reader on the slave side, and select now reflects this; - internally, TTY now uses a test based on "caller != NONE" rather than "grant != GRANT_INVALID" to identify whether a call is currently ongoing; - "offset" fields have been removed as they equal the corresponding "cum" fields; - improved variable typing and function naming here and there; - various other small fixes. Change-Id: I6b51452888942e864b4e034e8c8490576184a23e
40 lines
386 B
C
40 lines
386 B
C
/* Keyboard unsupport for ARM. Just stubs. */
|
|
#include <minix/ipc.h>
|
|
#include <termios.h>
|
|
#include "tty.h"
|
|
|
|
void
|
|
kbd_interrupt(message *m)
|
|
{
|
|
}
|
|
|
|
void
|
|
do_fkey_ctl(message *m)
|
|
{
|
|
}
|
|
|
|
void
|
|
do_kb_inject(message *m)
|
|
{
|
|
}
|
|
|
|
void
|
|
do_kbd(message *m, int ipc_status)
|
|
{
|
|
}
|
|
|
|
void
|
|
kb_init_once(void)
|
|
{
|
|
}
|
|
|
|
int
|
|
kbd_loadmap(endpoint_t endpt, cp_grant_id_t grant)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
kb_init(tty_t *tp)
|
|
{
|
|
}
|