diff options
author | 2019-11-13 12:17:43 -0800 | |
---|---|---|
committer | 2019-11-13 12:17:43 -0800 | |
commit | 6883e545bc3a08097f309ae3caddfbf708dea458 (patch) | |
tree | 58ade72e194bd8fd2604db1f67633270a4b8c130 | |
parent | e29a1e2dc9d0d99110495122065b647098134098 (diff) | |
parent | 657114266fdbaf92605b8fdae452729cbe8092d2 (diff) |
Merge "Add more details on FD sharing" am: 32e787a9e2 am: 4e4eb13877
am: 657114266f
Change-Id: I1bd77401d959394f9bb0ddf88bf6449125c8fd5c
-rw-r--r-- | include/android/sharedmem.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/android/sharedmem.h b/include/android/sharedmem.h index 2aacf11ee4..6efa4f71cb 100644 --- a/include/android/sharedmem.h +++ b/include/android/sharedmem.h @@ -62,7 +62,8 @@ extern "C" { * Use close() to release the shared memory region. * * Use {@link android.os.ParcelFileDescriptor} to pass the file descriptor to - * another process. + * 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. * * Available since API level 26. * |