The Trunk: Files-ul.91.mcz

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

The Trunk: Files-ul.91.mcz

commits-2
Levente Uzonyi uploaded a new version of Files to project The Trunk:
http://source.squeak.org/trunk/Files-ul.91.mcz

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

Name: Files-ul.91
Author: ul
Time: 2 November 2010, 3:37:33.101 am
UUID: 4398bfc8-86a5-e14e-8adb-c302285603af
Ancestors: Files-ul.90

- initialize StdioHandles without restarting the image

=============== Diff against Files-ul.90 ===============

Item was changed:
+ (PackageInfo named: 'Files') postscript: '| handleArray |
+ handleArray := StandardFileStream classPool at: #StdioHandles.
+ (handleArray isNil or: [ handleArray allSatisfy: [ :each | each isNil ] ])
+ ifTrue: [ StandardFileStream startUp: true ]'!
- (PackageInfo named: 'Files') postscript: 'StandardFileStream allSubInstancesDo: [ :each |
- each enableReadBuffering ]'!