diff options
Diffstat (limited to 'include/android/sharedmem.h')
-rw-r--r-- | include/android/sharedmem.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/android/sharedmem.h b/include/android/sharedmem.h index 7994aa9914..e0a8045d41 100644 --- a/include/android/sharedmem.h +++ b/include/android/sharedmem.h @@ -59,9 +59,10 @@ extern "C" { * * Use close() to release the shared memory region. * - * Use {@link android.os.ParcelFileDescriptor} to pass the file descriptor to - * another process. File descriptors may also be sent to other processes over a Unix domain - * socket with sendmsg and SCM_RIGHTS. See sendmsg(3) and cmsg(3) man pages for more information. + * Use <a href="/reference/android/os/ParcelFileDescriptor">android.os.ParcelFileDescriptor</a> + * to pass the file descriptor to another process. File descriptors may also be sent to other + * processes over a Unix domain socket with sendmsg and SCM_RIGHTS. See sendmsg(3) and + * cmsg(3) man pages for more information. * * If you intend to share this file descriptor with a child process after * calling exec(3), note that you will need to use fcntl(2) with FD_SETFD @@ -71,7 +72,8 @@ extern "C" { * * \param name an optional name. * \param size size of the shared memory region - * \return file descriptor that denotes the shared memory; -1 and sets errno on failure, or -EINVAL if the error is that size was 0. + * \return file descriptor that denotes the shared memory; + * -1 and sets errno on failure, or -EINVAL if the error is that size was 0. */ int ASharedMemory_create(const char *name, size_t size) __INTRODUCED_IN(26); |