[Vm-dev] VM Maker: VMMaker.oscog-eem.1489.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Oct 4 16:54:07 UTC 2015


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!



More information about the Vm-dev mailing list