Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/private/async.h

    r5da7199 r79ae36dd  
    3636#define LIBC_PRIVATE_ASYNC_H_
    3737
    38 #include <async.h>
    3938#include <adt/list.h>
    4039#include <fibril.h>
    41 #include <fibril_synch.h>
    4240#include <sys/time.h>
    4341#include <bool.h>
     
    8179} awaiter_t;
    8280
     81/** Message data */
     82typedef struct {
     83        awaiter_t wdata;
     84       
     85        /** If reply was received. */
     86        bool done;
     87       
     88        /** Pointer to where the answer data is stored. */
     89        ipc_call_t *dataptr;
     90       
     91        sysarg_t retval;
     92} amsg_t;
     93
    8394extern void __async_init(void);
    8495extern void async_insert_timeout(awaiter_t *);
Note: See TracChangeset for help on using the changeset viewer.