Changeset 2c2d54a in mainline for uspace/lib/c/generic/async.c


Ignore:
Timestamp:
2016-09-02T17:58:05Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4c3602c4
Parents:
4bf0926e (diff), 3233adb (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 from lp:~jakub/helenos/pager

File:
1 edited

Legend:

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

    r4bf0926e r2c2d54a  
    116116#include <stdlib.h>
    117117#include <macros.h>
     118#include <as.h>
     119#include <abi/mm/as.h>
    118120#include "private/libc.h"
    119121
     
    33813383}
    33823384
     3385void *async_as_area_create(void *base, size_t size, unsigned int flags,
     3386    async_sess_t *pager, sysarg_t id1, sysarg_t id2, sysarg_t id3)
     3387{
     3388        as_area_pager_info_t pager_info = {
     3389                .pager = pager->phone,
     3390                .id1 = id1,
     3391                .id2 = id2,
     3392                .id3 = id3
     3393        };
     3394        return as_area_create(base, size, flags, &pager_info);
     3395}
     3396
    33833397/** @}
    33843398 */
Note: See TracChangeset for help on using the changeset viewer.