Changeset aef48ce in mainline for uspace/lib/ddev/src/ddev_srv.c


Ignore:
Timestamp:
2020-07-02T11:52:30Z (5 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)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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:
Note: See TracChangeset for help on using the changeset viewer.