Changeset 3b3fcf36 in mainline for uspace/lib/c/generic/as.c


Ignore:
Timestamp:
2018-11-20T10:53:13Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a615be0
Parents:
8be3230
git-author:
Jiri Svoboda <jiri@…> (2018-11-19 18:49:18)
git-committer:
Jiri Svoboda <jiri@…> (2018-11-20 10:53:13)
Message:

IPC share-in test using text and data segment.

File:
1 edited

Legend:

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

    r8be3230 r3b3fcf36  
    108108}
    109109
     110/** Get address-space area information.
     111 *
     112 * @param address Virtual address pointing into the address space area being
     113 *                modified.
     114 * @param info    Pointer to information structure to fill in.
     115 *
     116 * @return zero on success or a code from @ref errno.h on failure.
     117 *
     118 */
     119errno_t as_area_get_info(void *address, as_area_info_t *info)
     120{
     121        return (errno_t) __SYSCALL2(SYS_AS_AREA_GET_INFO, (sysarg_t) address,
     122            (sysarg_t) info);
     123}
     124
    110125/** Find mapping to physical address.
    111126 *
Note: See TracChangeset for help on using the changeset viewer.