Changeset aef48ce in mainline


Ignore:
Timestamp:
2020-07-02T11:52:30Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
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)
Message:

Fix date and debug prints (thx Jakub)

Location:
uspace/lib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/congfx/meson.build

    rde19d4a raef48ce  
    11#
    2 # Copyright (c) 2015 Jiri Svoboda
     2# Copyright (c) 2019 Jiri Svoboda
    33# All rights reserved.
    44#
  • uspace/lib/ddev/src/ddev_srv.c

    rde19d4a raef48ce  
    4343#include <stddef.h>
    4444
    45 #include <stdio.h>
    46 
    4745/** Connect to a GC.
    4846 *
     
    5856        sysarg_t arg3;
    5957        errno_t rc;
    60 
    61         printf("ddev_get_gc_srv\n");
    6258
    6359        if (srv->ops->get_gc == NULL) {
     
    7672        errno_t rc;
    7773
    78         printf("ddev_get_info_srv\n");
    79 
    8074        ipc_call_t call;
    8175        size_t size;
     
    9387
    9488        if (srv->ops->get_info == NULL) {
    95                 printf("get_info is NULL -> ENOTSUP\n");
    9689                async_answer_0(&call, ENOTSUP);
    9790                async_answer_0(icall, ENOTSUP);
     
    119112        /* Accept the connection */
    120113        async_accept_0(icall);
    121         printf("ddev_conn\n");
    122114
    123115        while (true) {
     
    133125                }
    134126
    135                 printf("display_conn method=%u\n", (unsigned) method);
    136127                switch (method) {
    137128                case DDEV_GET_GC:
  • uspace/lib/ipcgfx/src/server.c

    rde19d4a raef48ce  
    161161        srvbmp->bmp = bitmap;
    162162        srvbmp->bmp_id = srvgc->next_bmp_id++;
    163         printf("gc_bitmap_create_srv: storing bmp_id=%u\n",
    164             (unsigned) srvbmp->bmp_id);
    165163
    166164        /* We created the memory area by sharing it in */
     
    255253        srvbmp->pixels = alloc.pixels; // Not really needed
    256254
    257         printf("gc_bitmap_create_doutput_srv: storing bmp_id=%u\n",
    258             (unsigned) srvbmp->bmp_id);
    259 
    260255        async_answer_1(icall, EOK, srvbmp->bmp_id);
    261256}
     
    340335        async_accept_0(icall);
    341336
    342         printf("gc_conn: accepted connection\n");
    343337        srvgc.gc = gc;
    344338        list_initialize(&srvgc.bitmaps);
Note: See TracChangeset for help on using the changeset viewer.