Ignore:
Timestamp:
2011-09-04T11:30:58Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
03bc76a
Parents:
d2c67e7 (diff), deac215e (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/generic/async_obsolete.c

    rd2c67e7 r8ff0bd2  
    3838#include <async.h>
    3939#include <async_obsolete.h>
     40#include "private/async.h"
    4041#undef LIBC_ASYNC_C_
    4142#undef LIBC_ASYNC_OBSOLETE_C_
     
    4445#include <malloc.h>
    4546#include <errno.h>
    46 #include "private/async.h"
    4747
    4848/** Send message and return id of the sent message.
     
    166166}
    167167
    168 void async_obsolete_serialize_start(void)
    169 {
    170         fibril_inc_sercount();
    171 }
    172 
    173 void async_obsolete_serialize_end(void)
    174 {
    175         fibril_dec_sercount();
    176 }
    177 
    178168/** Wrapper for IPC_M_DATA_WRITE calls using the async framework.
    179169 *
     
    240230 */
    241231int async_obsolete_connect_to_me(int phone, sysarg_t arg1, sysarg_t arg2,
    242     sysarg_t arg3, async_client_conn_t client_receiver)
     232    sysarg_t arg3, async_client_conn_t client_receiver, void *carg)
    243233{
    244234        sysarg_t task_hash;
     
    251241        if (client_receiver != NULL)
    252242                async_new_connection(task_hash, phone_hash, 0, NULL,
    253                     client_receiver);
     243                    client_receiver, carg);
    254244       
    255245        return EOK;
Note: See TracChangeset for help on using the changeset viewer.