1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/* vcons-input.c - Add input to a virtual console.
Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
Written by Marcus Brinkmann.
This file is part of the GNU Hurd.
The GNU Hurd is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.
The GNU Hurd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
#include <errno.h>
#include <unistd.h>
#include <pthread.h>
#include "cons.h"
#include "priv.h"
/* Non-locking version of cons_vcons_input. */
error_t
_cons_vcons_input (vcons_t vcons, char *buf, size_t size)
{
int ret;
do
{
ret = write (vcons->input, buf, size);
if (ret > 0)
{
size -= ret;
buf += ret;
}
}
while (size && (ret != -1 || errno == EINTR));
return 0;
}
/* Enter SIZE bytes from the buffer BUF into the virtual console
VCONS. */
error_t
cons_vcons_input (vcons_t vcons, char *buf, size_t size)
{
pthread_mutex_lock (&vcons->lock);
_cons_vcons_console_event (vcons, CONS_EVT_KEYPRESS);
if (vcons->scrolling && _cons_jump_down_on_input)
_cons_vcons_scrollback (vcons, CONS_SCROLL_ABSOLUTE_LINE, 0);
_cons_vcons_input (vcons, buf, size);
pthread_mutex_unlock (&vcons->lock);
return 0;
}
|