Changeset 6c2aba3 in mainline for uspace/lib/display/src/disp_srv.c
- Timestamp:
- 2020-02-19T17:04:40Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1388f7f0
- Parents:
- 0a052b0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/src/disp_srv.c
r0a052b0 r6c2aba3 44 44 #include <stddef.h> 45 45 46 #include <stdio.h>47 46 static void display_callback_create_srv(display_srv_t *srv, ipc_call_t *call) 48 47 { 49 printf("display_callback_create_srv\n");50 51 48 async_sess_t *sess = async_callback_receive(EXCHANGE_SERIALIZE); 52 49 if (sess == NULL) { … … 67 64 errno_t rc; 68 65 69 printf("display_window_create_srv\n");70 71 66 if (!async_data_write_receive(&call, &size)) { 72 67 async_answer_0(&call, EREFUSED); … … 101 96 sysarg_t wnd_id; 102 97 errno_t rc; 103 104 printf("display_window_destroy_srv\n");105 98 106 99 wnd_id = ipc_get_arg1(icall); … … 123 116 errno_t rc; 124 117 125 printf("display_get_event_srv\n");126 127 118 if (srv->ops->get_event == NULL) { 128 119 async_answer_0(icall, ENOTSUP); … … 162 153 /* Accept the connection */ 163 154 async_accept_0(icall); 164 printf("display_conn\n");165 155 166 156 while (true) { … … 176 166 } 177 167 178 printf("display_conn method=%u\n", (unsigned) method);179 168 switch (method) { 180 169 case DISPLAY_CALLBACK_CREATE: … … 219 208 async_exch_t *exch; 220 209 221 printf("display_srv_ev_pending()\n");222 223 210 exch = async_exchange_begin(srv->client_sess); 224 211 async_msg_0(exch, DISPLAY_EV_PENDING);
Note:
See TracChangeset
for help on using the changeset viewer.