Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / native_client / src / include / minsfi.h
1 /*
2  * Copyright (c) 2014 The Native Client Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6
7 #ifndef NATIVE_CLIENT_SRC_INCLUDE_MINSFI_H_
8 #define NATIVE_CLIENT_SRC_INCLUDE_MINSFI_H_
9
10 #include <stdbool.h>
11 #include <stdint.h>
12
13 /*
14  * Allocates a memory region for the sandbox and initializes it. Returns TRUE
15  * if it was successful or if the sandbox has already been initialized.
16  */
17 bool MinsfiInitializeSandbox(void);
18
19 /*
20  * Invokes the entry function of the sandbox and returns the exit value
21  * returned by the sandbox. Returns EXIT_FAILURE if sandbox cannot be invoked,
22  * e.g. because it has not been initialized.
23  */
24 int MinsfiInvokeSandbox(int argc, char **argv);
25
26 /*
27  * Destroys the MinSFI address subspace if there is one. Returns FALSE if
28  * a subspace exists but could not be destroyed.
29  */
30 bool MinsfiDestroySandbox(void);
31
32 #endif  // NATIVE_CLIENT_SRC_INCLUDE_MINSFI_H_