Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: runtime/include/dart_api.h

Issue 1177153005: Enables clean VM shutdown. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Remove debug print Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 * or NULL if no snapshot is provided. 854 * or NULL if no snapshot is provided.
855 * \param create A function to be called during isolate creation. 855 * \param create A function to be called during isolate creation.
856 * See Dart_IsolateCreateCallback. 856 * See Dart_IsolateCreateCallback.
857 * \param interrupt A function to be called when an isolate is interrupted. 857 * \param interrupt A function to be called when an isolate is interrupted.
858 * See Dart_IsolateInterruptCallback. 858 * See Dart_IsolateInterruptCallback.
859 * \param unhandled_exception A function to be called if an isolate has an 859 * \param unhandled_exception A function to be called if an isolate has an
860 * unhandled exception. Set Dart_IsolateUnhandledExceptionCallback. 860 * unhandled exception. Set Dart_IsolateUnhandledExceptionCallback.
861 * \param shutdown A function to be called when an isolate is shutdown. 861 * \param shutdown A function to be called when an isolate is shutdown.
862 * See Dart_IsolateShutdownCallback. 862 * See Dart_IsolateShutdownCallback.
863 * 863 *
864 * \return True if initialization is successful. 864 * \return NULL if initialization is successful. Returns an error message
865 * otherwise. The caller is responsible for freeing the error message.
865 */ 866 */
866 DART_EXPORT bool Dart_Initialize( 867 DART_EXPORT char* Dart_Initialize(
867 const uint8_t* vm_isolate_snapshot, 868 const uint8_t* vm_isolate_snapshot,
868 Dart_IsolateCreateCallback create, 869 Dart_IsolateCreateCallback create,
869 Dart_IsolateInterruptCallback interrupt, 870 Dart_IsolateInterruptCallback interrupt,
870 Dart_IsolateUnhandledExceptionCallback unhandled_exception, 871 Dart_IsolateUnhandledExceptionCallback unhandled_exception,
871 Dart_IsolateShutdownCallback shutdown, 872 Dart_IsolateShutdownCallback shutdown,
872 Dart_FileOpenCallback file_open, 873 Dart_FileOpenCallback file_open,
873 Dart_FileReadCallback file_read, 874 Dart_FileReadCallback file_read,
874 Dart_FileWriteCallback file_write, 875 Dart_FileWriteCallback file_write,
875 Dart_FileCloseCallback file_close, 876 Dart_FileCloseCallback file_close,
876 Dart_EntropySource entropy_source); 877 Dart_EntropySource entropy_source);
877 878
878 /** 879 /**
879 * Cleanup state in the VM before process termination. 880 * Cleanup state in the VM before process termination.
880 * 881 *
881 * \return True if cleanup is successful. 882 * \return NULL if cleanup is successful. Returns an error message otherwise.
883 * The caller is responsible for freeing the error message.
882 */ 884 */
883 DART_EXPORT bool Dart_Cleanup(); 885 DART_EXPORT char* Dart_Cleanup();
884 886
885 /** 887 /**
886 * Sets command line flags. Should be called before Dart_Initialize. 888 * Sets command line flags. Should be called before Dart_Initialize.
887 * 889 *
888 * \param argc The length of the arguments array. 890 * \param argc The length of the arguments array.
889 * \param argv An array of arguments. 891 * \param argv An array of arguments.
890 * 892 *
891 * \return True if VM flags set successfully. 893 * \return True if VM flags set successfully.
892 */ 894 */
893 DART_EXPORT bool Dart_SetVMFlags(int argc, const char** argv); 895 DART_EXPORT bool Dart_SetVMFlags(int argc, const char** argv);
(...skipping 1939 matching lines...) Expand 10 before | Expand all | Expand 10 after
2833 2835
2834 /** 2836 /**
2835 * Returns the port that script load requests should be sent on. 2837 * Returns the port that script load requests should be sent on.
2836 * 2838 *
2837 * \return Returns the port for load requests or ILLEGAL_PORT if the service 2839 * \return Returns the port for load requests or ILLEGAL_PORT if the service
2838 * isolate failed to startup or does not support load requests. 2840 * isolate failed to startup or does not support load requests.
2839 */ 2841 */
2840 DART_EXPORT Dart_Port Dart_ServiceWaitForLoadPort(); 2842 DART_EXPORT Dart_Port Dart_ServiceWaitForLoadPort();
2841 2843
2842 #endif /* INCLUDE_DART_API_H_ */ /* NOLINT */ 2844 #endif /* INCLUDE_DART_API_H_ */ /* NOLINT */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698