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
RevLine 
[810860a]1?ipc_m_connect_me_to ;
2[fnc.gcons_notify_connect] ;
[de48286]3(
[810860a]4 ?read {
5 [fnc.cons_read]
6 } +
[f1380b7]7
[810860a]8 ?write {
9 [fnc.cons_write]
10 } +
[f1380b7]11
[810860a]12 ?sync {
13 [fnc.fb_pending_flush] ;
14 tentative {
15 !fb.flush ;
16 [fnc.curs_goto]
17 }
18 } +
[f1380b7]19
[810860a]20 ?clear {
21 tentative {
22 !fb.flush
23 }
24 } +
[f1380b7]25
[810860a]26 ?goto {
27 tentative {
28 !fb.curs_goto
29 }
30 } +
[f1380b7]31
[810860a]32 ?set_style {
33 [fnc.fb_pending_flush] ;
34 tentative {
35 [fnc.set_style]
36 }
37 } +
[f1380b7]38
[810860a]39 ?set_color {
40 [fnc.fb_pending_flush] ;
41 tentative {
42 [fnc.set_color]
43 }
44 } +
[f1380b7]45
[810860a]46 ?set_rgb_color {
47 [fnc.fb_pending_flush] ;
48 tentative {
49 [fnc.set_rgb_color]
50 }
51 } +
[f1380b7]52
[810860a]53 ?cursor_visibility {
54 [fnc.fb_pending_flush] ;
55 tentative {
56 [fnc.curs_visibility]
57 }
58 } +
[f1380b7]59
[82cf692]60 ?kcon_enable {
[b988db0]61 !sys_console.sys_debug_enable_console
[82cf692]62 } +
[f1380b7]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.