diff options
author | Benedict Wong <benedictwong@google.com> | 2019-12-18 17:54:36 -0800 |
---|---|---|
committer | Benedict Wong <benedictwong@google.com> | 2019-12-19 12:24:35 -0800 |
commit | c719c15db27e83d3293fca5b6a6df9592bc21fd0 (patch) | |
tree | a03b4d15c8314568eefa8a4ced2f47356a2d0a79 /mmodules | |
parent | 5a91d71a496d12b493f2bbbecf3dee953aed93b6 (diff) |
Add fcntlInt to public API
In order to allow sockets to be set as non-blocking after the creation,
fcntlInt must be exposed.
Test: new tests added, passing
Change-Id: If30d3750734a5a3910587a06df334c04fad92703
Diffstat (limited to 'mmodules')
-rw-r--r-- | mmodules/core_platform_api/api/platform/current-api.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mmodules/core_platform_api/api/platform/current-api.txt b/mmodules/core_platform_api/api/platform/current-api.txt index 8abb9be236..28231569cb 100644 --- a/mmodules/core_platform_api/api/platform/current-api.txt +++ b/mmodules/core_platform_api/api/platform/current-api.txt @@ -44,7 +44,6 @@ package android.system { public final class Os { method public static android.system.StructCapUserData[] capget(android.system.StructCapUserHeader) throws android.system.ErrnoException; method public static void capset(android.system.StructCapUserHeader, android.system.StructCapUserData[]) throws android.system.ErrnoException; - method public static int fcntlInt(java.io.FileDescriptor, int, int) throws android.system.ErrnoException; method public static int getpgid(int) throws android.system.ErrnoException; method public static android.system.StructRlimit getrlimit(int) throws android.system.ErrnoException; method public static int getsockoptInt(java.io.FileDescriptor, int, int) throws android.system.ErrnoException; |