Changeset 241f1985 in mainline for uspace/lib/c/include


Ignore:
Timestamp:
2019-08-31T10:45:17Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
102f641
Parents:
f92b315
git-author:
Matthieu Riolo <matthieu.riolo@…> (2019-08-23 22:04:34)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-08-31 10:45:17)
Message:

Correcting failure from previous merge

The commits from Michal Koutný from the branch system-daemon
where built on a old version of Helenos. Because of this
many types and API functions have changed. This commit
upgrades the merge code

Location:
uspace/lib/c/include
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/adt/dyn_array.h

    rf92b315 r241f1985  
    4141typedef struct {
    4242        /** Data buffer of array */
    43         uint8_t *_data;
     43        void *_data;
    4444        /** Size on bytes of a single item */
    4545        size_t _item_size;
  • uspace/lib/c/include/async.h

    rf92b315 r241f1985  
    132132extern void async_put_client_data_by_id(task_id_t);
    133133
    134 extern void async_set_implicit_connection(async_client_conn_t);
     134extern void async_set_implicit_connection(async_port_handler_t);
    135135
    136136extern errno_t async_create_port(iface_t, async_port_handler_t, void *,
  • uspace/lib/c/include/ipc/services.h

    rf92b315 r241f1985  
    5555#define SERVICE_NAME_CLIPBOARD "clipboard"
    5656#define SERVICE_NAME_CORECFG  "corecfg"
     57#define SERVICE_NAME_DEVMAN   "devman"
    5758#define SERVICE_NAME_DHCP     "net/dhcp"
    5859#define SERVICE_NAME_DNSR     "net/dnsr"
  • uspace/lib/c/include/task.h

    rf92b315 r241f1985  
    7676
    7777/* Implemented in task_event.c */
    78 extern int task_register_event_handler(task_event_handler_t, bool);
     78extern errno_t task_register_event_handler(task_event_handler_t, bool);
    7979
    8080#endif
  • uspace/lib/c/include/taskman.h

    rf92b315 r241f1985  
    4040/* Internal functions to be used by loader only */
    4141extern async_sess_t *taskman_get_session(void);
    42 extern int taskman_intro_loader(void);
     42extern errno_t taskman_intro_loader(void);
    4343
    4444/* Internal functions to be used by NS only */
    45 extern int taskman_intro_ns(void);
     45extern errno_t taskman_intro_ns(void);
    4646
    4747#endif
Note: See TracChangeset for help on using the changeset viewer.