[Vm-dev] VM Maker: VMMaker.oscog-VB.2369.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Apr 24 00:42:45 UTC 2018


VincentBlondeau uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-VB.2369.mcz

==================== Summary ====================

Name: VMMaker.oscog-VB.2369
Author: VB
Time: 23 April 2018, 5:42:02.529234 pm
UUID: 83d95eb4-3cee-464b-97a7-357795850db7
Ancestors: VMMaker.oscog-eem.2368

add primitive  primitiveStdioDescriptorIsATTY
See https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/254

=============== Diff against VMMaker.oscog-eem.2368 ===============

Item was added:
+ ----- Method: FilePlugin>>primitiveStdioDescriptorIsATTY (in category 'file primitives') -----
+ primitiveStdioDescriptorIsATTY
+ 	| isStdoutRedirected |
+ 	<export: true>
+ 	isStdoutRedirected := self
+ 				cCode: 'sqStdioDescriptorIsATTY() '
+ 				inSmalltalk: [true].
+ 	interpreterProxy pop: 1.
+ 	interpreterProxy pushInteger: isStdoutRedirected!



More information about the Vm-dev mailing list