Administrator
|
Hi:
I would like to know what happens when I start VW visual.exe visual.im up to when the VisualLauncher is ready for user interactions. A link to documentation would be great. A high level description and some startup code to read would be good. Similarly, what happens when I end my VW with "Save and Exit"? Thanks, Aik-Siong Koh |
This should be a good starting point:
Snapshot>>postSnapshotBootstrap "We're returning from a snapshot, bootstrapping from a disk image. Start up everything." Subsystem markAllInactive. self signalSystemEvent: #earlySystemInstallation. Processor activeProcess priority: originalPriority. self signalSystemEvent: #returnFromSnapshot. ObjectMemory primInformSystemReady. Application code can show an interest in the events: update: aSymbol " aSymbol = #aboutToSnapshot ifTrue: []. " " aSymbol = #finishedSnapshot ifTrue: []. " " aSymbol = #returnFromSnapshot ifTrue: []. " " aSymbol = #aboutToQuit ifTrue: []. " You'd have to review the notification sequences. Keep in mind that during save and return the active process is bumped to highestPriority (in Snapshot>>preSnapshot). Paul Baumann -----Original Message----- From: [hidden email] [mailto:[hidden email]] On Behalf Of askoh Sent: Saturday, April 27, 2013 08:22 To: [hidden email] Subject: [vwnc] VisualWorks startup sequence Hi: I would like to know what happens when I start VW visual.exe visual.im up to when the VisualLauncher is ready for user interactions. A link to documentation would be great. A high level description and some startup code to read would be good. Similarly, what happens when I end my VW with "Save and Exit"? Thanks, Aik-Siong Koh -- View this message in context: http://forum.world.st/VisualWorks-startup-sequence-tp4683968.html Sent from the VisualWorks mailing list archive at Nabble.com. _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc This message may contain confidential information and is intended for specific recipients unless explicitly noted otherwise. If you have reason to believe you are not an intended recipient of this message, please delete it and notify the sender. This message may not represent the opinion of IntercontinentalExchange, Inc. (ICE), its subsidiaries or affiliates, and does not constitute a contract or guarantee. Unencrypted electronic mail is not secure and the recipient of this message is expected to provide safeguards from viruses and pursue alternate means of communication where privacy or a binding message is desired. _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
In reply to this post by askoh
I believe there is some documentation on that, but looking at the classes Snapshot and Subsystem would probably be informative. On 27 April 2013 05:21, askoh <[hidden email]> wrote: Hi: _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Free forum by Nabble | Edit this page |