Entry: JS_Unlock (Function)
Summary: Unlocks a previously locked JS run-time environment.
Syntax:
void JS_Unlock(JSRuntime *rt);
Argument Type Description
*rt JSRuntime Pointer to a previously established JS run-time environment with which to associate this context.
Description:
JS_Unlock is an empty, API hook function for developers so that they can provide a mechanism for unlocking the JS run-time environment after having previously locked it with a call to JS_Lock. Developers must create their own unlocking function that takes a single argument, rt, the JS run-time environment to unlock. JS_Unlock must undo the actions taken by the developer's implementation of JS_Lock.
See also:
|
|
|