From 2e1e6f08d7af12f39932cdc5c1212c5b999c897e Mon Sep 17 00:00:00 2001 From: "jvoung@google.com" Date: Fri, 11 Jan 2013 18:22:56 +0000 Subject: When launching PNaCl helper nexes, explicitly disable IRT loading. This is done by setting the irt_fd to -1. However NaCl currently errors out when given -1, so this depends on a NaCl-side sel_ldr change which will understand that -1 means skip loading: https://codereview.chromium.org/11743028/ BUG= http://code.google.com/p/nativeclient/issues/detail?id=3241 TEST= manual (patch in NaCl side CL and run PNaCl w/ TOOLS_REVISION at 10509). Review URL: https://codereview.chromium.org/11761025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176389 0039d316-1c4b-4281-b951-d872f2087c98 --- ppapi/api/private/ppb_nacl_private.idl | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ppapi/api') diff --git a/ppapi/api/private/ppb_nacl_private.idl b/ppapi/api/private/ppb_nacl_private.idl index f603d6b..88c88fe 100644 --- a/ppapi/api/private/ppb_nacl_private.idl +++ b/ppapi/api/private/ppb_nacl_private.idl @@ -44,9 +44,12 @@ interface PPB_NaCl_Private { * indicates that the nexe run by sel_ldr will use the PPAPI APIs. * This implies that LaunchSelLdr is run from the main thread. If a nexe * does not need PPAPI, then it can run off the main thread. + * The |uses_irt| flag indicates whether the IRT should be loaded in this + * NaCl process. This is true for ABI stable nexes. */ PP_NaClResult LaunchSelLdr([in] PP_Instance instance, [in] str_t alleged_url, + [in] PP_Bool uses_irt, [in] PP_Bool uses_ppapi, [in] PP_Bool enable_ppapi_dev, [out] mem_t imc_handle); -- cgit v1.1