VM Maker: VMMaker.oscog-eem.1489.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-eem.1489.mcz

commits-2
 
Eliot Miranda uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-eem.1489.mcz

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

Name: VMMaker.oscog-eem.1489
Author: eem
Time: 4 October 2015, 9:52:22.669 am
UUID: f3c880a7-1667-4700-bc2f-b43ea844cc6a
Ancestors: VMMaker.oscog-eem.1488

Integrate Monty's fsync primitive.

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

Item was added:
+ ----- Method: FilePlugin>>primitiveFileSync (in category 'file primitives') -----
+ primitiveFileSync
+ | file |
+ <var: 'file' type: 'SQFile *'>
+ <export: true>
+ file := self fileValueOf: (interpreterProxy stackValue: 0).
+ interpreterProxy failed ifFalse:[self sqFileSync: file].
+ interpreterProxy failed ifFalse: [interpreterProxy pop: 1].!

Item was added:
+ ----- Method: FilePluginSimulator>>sqFileSync: (in category 'simulation') -----
+ sqFileSync: file
+ ^file sync!