The Trunk: System-eem.691.mcz

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

The Trunk: System-eem.691.mcz

commits-2
Eliot Miranda uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-eem.691.mcz

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

Name: System-eem.691
Author: eem
Time: 19 November 2014, 12:10:12.44 pm
UUID: 6751cad7-c8f9-474c-ac0f-73fce86adf49
Ancestors: System-cmm.690

Add SmallInteger to the front of the start-up list
defined by initializeStartUpList.

=============== Diff against System-cmm.690 ===============

Item was changed:
  ----- Method: SmalltalkImage class>>initializeStartUpList (in category 'class initialization') -----
  initializeStartUpList
  "SmalltalkImage initialize"
 
  | oldList |
  oldList := StartUpList.
  StartUpList := OrderedCollection new.
  "These get processed from the top down..."
  #(
+ SmallInteger
  Delay
  DisplayScreen
  Cursor
  InputSensor
  ProcessorScheduler  "Starts low space watcher and bkground."
  FileDirectory  "Enables file stack dump and opens sources."
  ShortIntegerArray
  ShortRunArray
  CrLfFileStream
  ) do:[:clsName|
  Smalltalk at: clsName ifPresent:[:cls| Smalltalk addToStartUpList: cls].
  ].
  oldList ifNotNil: [oldList do: [:className | Smalltalk at: className
  ifPresent: [:theClass | Smalltalk addToStartUpList: theClass]]].
  #(
  ImageSegment
  PasteUpMorph
  ControlManager
  ) do:[:clsName|
  Smalltalk at: clsName ifPresent:[:cls| Smalltalk addToStartUpList: cls].
  ].
  !


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: System-eem.691.mcz

Frank Shearar-3
On 19 November 2014 20:10,  <[hidden email]> wrote:

> Eliot Miranda uploaded a new version of System to project The Trunk:
> http://source.squeak.org/trunk/System-eem.691.mcz
>
> ==================== Summary ====================
>
> Name: System-eem.691
> Author: eem
> Time: 19 November 2014, 12:10:12.44 pm
> UUID: 6751cad7-c8f9-474c-ac0f-73fce86adf49
> Ancestors: System-cmm.690
>
> Add SmallInteger to the front of the start-up list
> defined by initializeStartUpList.
>
Why, out of interest? I guess it's something that will help in the
near future, with the 64-bit work in Spur?

frank

Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: System-eem.691.mcz

Frank Shearar-3
On 20 November 2014 10:44, Frank Shearar <[hidden email]> wrote:

> On 19 November 2014 20:10,  <[hidden email]> wrote:
>> Eliot Miranda uploaded a new version of System to project The Trunk:
>> http://source.squeak.org/trunk/System-eem.691.mcz
>>
>> ==================== Summary ====================
>>
>> Name: System-eem.691
>> Author: eem
>> Time: 19 November 2014, 12:10:12.44 pm
>> UUID: 6751cad7-c8f9-474c-ac0f-73fce86adf49
>> Ancestors: System-cmm.690
>>
>> Add SmallInteger to the front of the start-up list
>> defined by initializeStartUpList.
>>
> Why, out of interest? I guess it's something that will help in the
> near future, with the 64-bit work in Spur?
>
> frank

Ah, it's in Kernel-eem.883's comment.

frank