source:
mainline/contrib/arch/uspace/srv/console/console.bp@
a35b458
Last change on this file since a35b458 was b988db0, checked in by , 16 years ago | |
---|---|
|
|
File size: 846 bytes |
Rev | Line | |
---|---|---|
[810860a] | 1 | ?ipc_m_connect_me_to ; |
2 | [fnc.gcons_notify_connect] ; | |
[de48286] | 3 | ( |
[810860a] | 4 | ?read { |
5 | [fnc.cons_read] | |
6 | } + | |
7 | ||
8 | ?write { | |
9 | [fnc.cons_write] | |
10 | } + | |
11 | ||
12 | ?sync { | |
13 | [fnc.fb_pending_flush] ; | |
14 | tentative { | |
15 | !fb.flush ; | |
16 | [fnc.curs_goto] | |
17 | } | |
18 | } + | |
19 | ||
20 | ?clear { | |
21 | tentative { | |
22 | !fb.flush | |
23 | } | |
24 | } + | |
25 | ||
26 | ?goto { | |
27 | tentative { | |
28 | !fb.curs_goto | |
29 | } | |
30 | } + | |
[de48286] | 31 | |
[810860a] | 32 | ?set_style { |
33 | [fnc.fb_pending_flush] ; | |
34 | tentative { | |
35 | [fnc.set_style] | |
36 | } | |
37 | } + | |
38 | ||
39 | ?set_color { | |
40 | [fnc.fb_pending_flush] ; | |
41 | tentative { | |
42 | [fnc.set_color] | |
43 | } | |
44 | } + | |
45 | ||
46 | ?set_rgb_color { | |
47 | [fnc.fb_pending_flush] ; | |
48 | tentative { | |
49 | [fnc.set_rgb_color] | |
50 | } | |
51 | } + | |
52 | ||
53 | ?cursor_visibility { | |
54 | [fnc.fb_pending_flush] ; | |
55 | tentative { | |
56 | [fnc.curs_visibility] | |
57 | } | |
58 | } + | |
59 | ||
[82cf692] | 60 | ?kcon_enable { |
[b988db0] | 61 | !sys_console.sys_debug_enable_console |
[82cf692] | 62 | } + |
63 | ||
[810860a] | 64 | ?get_event + |
65 | ?get_size + | |
[82cf692] | 66 | ?get_color_cap |
[810860a] | 67 | )* ; |
68 | ?ipc_m_phone_hungup { | |
69 | [fnc.gcons_notify_disconnect] | |
70 | } |
Note:
See TracBrowser
for help on using the repository browser.