PackageDescription: OSProcessSignalHandler


OS Process Signal Handler

Last published: June 14, 2021 by 'klnsrgn'

Defines 14 Classes
Extends 7 Classes


OSProcessSignalHandler handles OS signals (interrupt/terminate etc) sent to VisualWorks, and announces them to interested parties.

The announcements must be subscribed after each image startup.

OS specific notes:
- On Windows, both console events (Ctrl-C etc.) and events sent to application windows and unknown to the VM are handled.
Note that CTRL_LOGOFF_EVENT and CTRL_SHUTDOWN_EVENT are only passed to services. Consider using the package WinService.
- On Unix, Unix signals are announced. No power events (hibernate etc.) are announced.
- On OS X, power events and Unix signals are announced.

Example:

OSProcessSignalHandler current
when: OSProcessSignal do: [ : signal | Transcript show: signal signalName; cr ];
when: OSProcessCloseSignal do: [ : signal | Transcript show: 'Bye bye'; cr. ObjectMemory quit ];
yourself

Contact: h . kleinsorgen - at - gmail . com

The MIT License (MIT)

Copyright (c) 2011 Holger Kleinsorgen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.