From 19e3f2b962e855f2188c37e96a510039309aadfc Mon Sep 17 00:00:00 2001 From: Benedict Wong Date: Wed, 18 Dec 2019 18:34:17 -0800 Subject: 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: Ib9951b5391cafda2b88c25f0cb7245b04a1adfb0 --- api/current.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/api/current.txt b/api/current.txt index b33ab56d2691..6fa989c21bfd 100644 --- a/api/current.txt +++ b/api/current.txt @@ -42358,6 +42358,7 @@ package android.system { method public static void execve(String, String[], String[]) throws android.system.ErrnoException; method public static void fchmod(java.io.FileDescriptor, int) throws android.system.ErrnoException; method public static void fchown(java.io.FileDescriptor, int, int) throws android.system.ErrnoException; + method public static int fcntlInt(@NonNull java.io.FileDescriptor, int, int) throws android.system.ErrnoException; method public static void fdatasync(java.io.FileDescriptor) throws android.system.ErrnoException; method public static android.system.StructStat fstat(java.io.FileDescriptor) throws android.system.ErrnoException; method public static android.system.StructStatVfs fstatvfs(java.io.FileDescriptor) throws android.system.ErrnoException; -- cgit v1.2.3-59-g8ed1b