Changeset b5e68c8 in mainline for uspace/lib/c/include/net/modules.h


Ignore:
Timestamp:
2011-05-12T16:49:44Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f36787d7
Parents:
e80329d6 (diff), 750636a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/net/modules.h

    re80329d6 rb5e68c8  
    4343
    4444#include <async.h>
    45 
    46 #include <ipc/ipc.h>
    4745#include <ipc/services.h>
    48 
    4946#include <sys/time.h>
    50 
    51 /** Converts the data length between different types.
    52  *
    53  * @param[in] type_from The source type.
    54  * @param[in] type_to   The destination type.
    55  * @param[in] count     The number units of the source type size.
    56  */
    57 #define CONVERT_SIZE(type_from, type_to, count) \
    58         ((sizeof(type_from) / sizeof(type_to)) * (count))
    59 
    60 /** Registers the module service at the name server.
    61  *
    62  * @param[in] me        The module service.
    63  * @param[out] phonehash The created phone hash.
    64  */
    65 #define REGISTER_ME(me, phonehash) \
    66         ipc_connect_to_me(PHONE_NS, (me), 0, 0, (phonehash))
    6747
    6848/** Connect to the needed module function type definition.
    6949 *
    70  * @param[in] need      The needed module service.
    71  * @returns             The phone of the needed service.
     50 * @param[in] need The needed module service.
     51 *
     52 * @return The phone of the needed service.
     53 *
    7254 */
    7355typedef int connect_module_t(services_t need);
    7456
    75 extern void answer_call(ipc_callid_t, int, ipc_call_t *, int);
    76 extern int bind_service(services_t, ipcarg_t, ipcarg_t, ipcarg_t,
     57extern void answer_call(ipc_callid_t, int, ipc_call_t *, size_t);
     58extern int bind_service(services_t, sysarg_t, sysarg_t, sysarg_t,
    7759    async_client_conn_t);
    78 extern int bind_service_timeout(services_t, ipcarg_t, ipcarg_t, ipcarg_t,
     60extern int bind_service_timeout(services_t, sysarg_t, sysarg_t, sysarg_t,
    7961    async_client_conn_t, suseconds_t);
    8062extern int connect_to_service(services_t);
    8163extern int connect_to_service_timeout(services_t, suseconds_t);
    82 extern int data_receive(void **, size_t *);
    8364extern int data_reply(void *, size_t);
    84 extern void refresh_answer(ipc_call_t *, int *);
     65extern void refresh_answer(ipc_call_t *, size_t *);
    8566
    8667#endif
Note: See TracChangeset for help on using the changeset viewer.