Changeset aef48ce in mainline
- Timestamp:
- 2020-07-02T11:52:30Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1a1c75e
- Parents:
- de19d4a
- git-author:
- Jiri Svoboda <jiri@…> (2020-07-01 18:46:05)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-07-02 11:52:30)
- Location:
- uspace/lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/congfx/meson.build
rde19d4a raef48ce 1 1 # 2 # Copyright (c) 201 5Jiri Svoboda2 # Copyright (c) 2019 Jiri Svoboda 3 3 # All rights reserved. 4 4 # -
uspace/lib/ddev/src/ddev_srv.c
rde19d4a raef48ce 43 43 #include <stddef.h> 44 44 45 #include <stdio.h>46 47 45 /** Connect to a GC. 48 46 * … … 58 56 sysarg_t arg3; 59 57 errno_t rc; 60 61 printf("ddev_get_gc_srv\n");62 58 63 59 if (srv->ops->get_gc == NULL) { … … 76 72 errno_t rc; 77 73 78 printf("ddev_get_info_srv\n");79 80 74 ipc_call_t call; 81 75 size_t size; … … 93 87 94 88 if (srv->ops->get_info == NULL) { 95 printf("get_info is NULL -> ENOTSUP\n");96 89 async_answer_0(&call, ENOTSUP); 97 90 async_answer_0(icall, ENOTSUP); … … 119 112 /* Accept the connection */ 120 113 async_accept_0(icall); 121 printf("ddev_conn\n");122 114 123 115 while (true) { … … 133 125 } 134 126 135 printf("display_conn method=%u\n", (unsigned) method);136 127 switch (method) { 137 128 case DDEV_GET_GC: -
uspace/lib/ipcgfx/src/server.c
rde19d4a raef48ce 161 161 srvbmp->bmp = bitmap; 162 162 srvbmp->bmp_id = srvgc->next_bmp_id++; 163 printf("gc_bitmap_create_srv: storing bmp_id=%u\n",164 (unsigned) srvbmp->bmp_id);165 163 166 164 /* We created the memory area by sharing it in */ … … 255 253 srvbmp->pixels = alloc.pixels; // Not really needed 256 254 257 printf("gc_bitmap_create_doutput_srv: storing bmp_id=%u\n",258 (unsigned) srvbmp->bmp_id);259 260 255 async_answer_1(icall, EOK, srvbmp->bmp_id); 261 256 } … … 340 335 async_accept_0(icall); 341 336 342 printf("gc_conn: accepted connection\n");343 337 srvgc.gc = gc; 344 338 list_initialize(&srvgc.bitmaps);
Note:
See TracChangeset
for help on using the changeset viewer.