source: mainline/contrib/arch/uspace/srv/console/console.bp

Last change on this file was f1380b7, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 7 years ago

style: Remove trailing whitespace on _all_ lines, including empty ones, remaining files.

  • Property mode set to 100644
File size: 836 bytes
Line 
1?ipc_m_connect_me_to ;
2[fnc.gcons_notify_connect] ;
3(
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 } +
31
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
60 ?kcon_enable {
61 !sys_console.sys_debug_enable_console
62 } +
63
64 ?get_event +
65 ?get_size +
66 ?get_color_cap
67)* ;
68?ipc_m_phone_hungup {
69 [fnc.gcons_notify_disconnect]
70}
Note: See TracBrowser for help on using the repository browser.