OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 * Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3 * for details. All rights reserved. Use of this source code is governed by a | 3 * for details. All rights reserved. Use of this source code is governed by a |
4 * BSD-style license that can be found in the LICENSE file. | 4 * BSD-style license that can be found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #ifndef INCLUDE_DART_API_H_ | 7 #ifndef INCLUDE_DART_API_H_ |
8 #define INCLUDE_DART_API_H_ | 8 #define INCLUDE_DART_API_H_ |
9 | 9 |
10 /** \mainpage Dart Embedding API Reference | 10 /** \mainpage Dart Embedding API Reference |
(...skipping 1009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1020 /** | 1020 /** |
1021 * Enters an isolate. After calling this function, | 1021 * Enters an isolate. After calling this function, |
1022 * the current isolate will be set to the provided isolate. | 1022 * the current isolate will be set to the provided isolate. |
1023 * | 1023 * |
1024 * Requires there to be no current isolate. Multiple threads may not be in | 1024 * Requires there to be no current isolate. Multiple threads may not be in |
1025 * the same isolate at once. | 1025 * the same isolate at once. |
1026 */ | 1026 */ |
1027 DART_EXPORT void Dart_EnterIsolate(Dart_Isolate isolate); | 1027 DART_EXPORT void Dart_EnterIsolate(Dart_Isolate isolate); |
1028 | 1028 |
1029 /** | 1029 /** |
1030 * Notifies the VM that the current thread should not be profiled until a | 1030 * Notifies the VM that the current isolate is about to make a blocking call. |
1031 * matching call to Dart_ThreadEnableProfiling is made. | |
1032 * | |
1033 * NOTE: By default, if a thread has entered an isolate it will be profiled. | |
1034 * This function should be used when an embedder knows a thread is about | |
1035 * to make a blocking call and wants to avoid unnecessary interrupts by | |
1036 * the profiler. | |
1037 */ | 1031 */ |
1038 DART_EXPORT void Dart_ThreadDisableProfiling(); | 1032 DART_EXPORT void Dart_IsolateBlocked(); |
1039 | 1033 |
1040 /** | 1034 /** |
1041 * Notifies the VM that the current thread should be profiled. | 1035 * Notifies the VM that the current isolate is no longer blocked. |
1042 * | |
1043 * NOTE: It is only legal to call this function *after* calling | |
1044 * Dart_ThreadDisableProfiling. | |
1045 * | |
1046 * NOTE: By default, if a thread has entered an isolate it will be profiled. | |
1047 */ | 1036 */ |
1048 DART_EXPORT void Dart_ThreadEnableProfiling(); | 1037 DART_EXPORT void Dart_IsolateUnblocked(); |
1049 | 1038 |
1050 /** | 1039 /** |
1051 * Exits an isolate. After this call, Dart_CurrentIsolate will | 1040 * Exits an isolate. After this call, Dart_CurrentIsolate will |
1052 * return NULL. | 1041 * return NULL. |
1053 * | 1042 * |
1054 * Requires there to be a current isolate. | 1043 * Requires there to be a current isolate. |
1055 */ | 1044 */ |
1056 DART_EXPORT void Dart_ExitIsolate(); | 1045 DART_EXPORT void Dart_ExitIsolate(); |
1057 /* TODO(turnidge): We don't want users of the api to be able to exit a | 1046 /* TODO(turnidge): We don't want users of the api to be able to exit a |
1058 * "pure" dart isolate. Implement and document. */ | 1047 * "pure" dart isolate. Implement and document. */ |
(...skipping 1904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2963 | 2952 |
2964 DART_EXPORT Dart_Handle Dart_CreatePrecompiledSnapshot( | 2953 DART_EXPORT Dart_Handle Dart_CreatePrecompiledSnapshot( |
2965 uint8_t** vm_isolate_snapshot_buffer, | 2954 uint8_t** vm_isolate_snapshot_buffer, |
2966 intptr_t* vm_isolate_snapshot_size, | 2955 intptr_t* vm_isolate_snapshot_size, |
2967 uint8_t** isolate_snapshot_buffer, | 2956 uint8_t** isolate_snapshot_buffer, |
2968 intptr_t* isolate_snapshot_size, | 2957 intptr_t* isolate_snapshot_size, |
2969 uint8_t** instructions_snapshot_buffer, | 2958 uint8_t** instructions_snapshot_buffer, |
2970 intptr_t* instructions_snapshot_size); | 2959 intptr_t* instructions_snapshot_size); |
2971 | 2960 |
2972 #endif /* INCLUDE_DART_API_H_ */ /* NOLINT */ | 2961 #endif /* INCLUDE_DART_API_H_ */ /* NOLINT */ |
OLD | NEW |