VM Maker: VMMaker.oscog-VB.2369.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

VM Maker: VMMaker.oscog-VB.2369.mcz

commits-2
 
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!