Skip to main content

Name

io_wrapper_open2 — Open a handle to a resource with context

Synopsis

#include "io_wrapper.h"

| io_object * **io_wrapper_open2** ( | filename, |   | |   | options, |   | |   | mode, |   | |   | context); |   |

const char * <var class="pdparam">filename</var>; int <var class="pdparam">options</var>; int <var class="pdparam">mode</var>; ECDict <var class="pdparam">context</var>;

Description

Note

This reference page was automatically generated from functions found in the header files in the development branch. The function described here may not exist in generally available versions of Momentum, and may change in behavior when it is generally available. Consult your vendor for definitive advice on the use of this function.

Open a handle to a resource with context.

This is semantically equivalent to setting the context via io_wrapper_set_context prior to calling io_wrapper_open.

The io object takes a reference on the context.

Note

This function may induce IO or otherwise block the caller. Blocking in the scheduler thread will lead to degraded performance and should be avoided at all costs. If your code is running in the IO subsystem, the core will have already taken steps to ensure that blocking is acceptable. Otherwise, you should look at using the thread pool API to run a job in the IO pool.

Was this page helpful?