Pharo-dev
By thread
pharo-dev@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
March 2010
- 96 participants
- 1770 messages
Re: [Pharo-project] Startup description of the problem
by Alexandre Bergel
Well caught!
Alexandre
On 13 Mar 2010, at 15:20, Stéphane Ducasse wrote:
> Here is the reason why Clipboard was not well initialized and the
> general problem with the startup list if we execute Smalltalk
> initialize :)
>
> in the startup list not complete (and cannot really because other
> classes may dynamically register themselves)
> SmalltalkImage>>initializeStartUpList
> "SmalltalkImage initializeStartUpList"
>
> | oldList |
> oldList := StartUpList.
> StartUpList := OrderedCollection new.
> "These get processed from the top down..."
> #(
> Delay
> DisplayScreen
> Cursor
> InputEventFetcher
> ProcessorScheduler "Starts low space watcher and bkground."
> LanguageEnvironment
> FileDirectory "Enables file stack dump and opens sources."
> NaturalLanguageTranslator
> 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]]].
> #(
> PasteUpMorph
> "ControlManager"
> ) do:[:clsName|
> Smalltalk at: clsName ifPresent:[:cls| Smalltalk addToStartUpList:
> cls].
> ].
>
>
> Now if we check the classes that have a addToStartUpList: call and
> that are not in the previous list.
> We see that we missed a lot of them.
>
> classes := ((SystemNavigation default allCallsOn: #addToStartUpList:)
> collect: [ :e | e methodClass ]),
> ((SystemNavigation default allCallsOn: #addToStartUpList:after:)
> collect: [ :e | e methodClass ]).
> classNames := classes collect: [ :n | n instanceSide name ].
> (Smalltalk class classVarNamed: 'StartUpList') do: [ :s |
> classNames remove: s ifAbsent: [] ].
> classNames asSortedCollection
>
>
> a SortedCollection(#AutoStart #CPUWatcher #Clipboard #CommandHistory
> #ExternalSettings #FreeTypeFontProvider #FreeTypeSettings
> #HostSystemMenus #HostWindowProxy #InputEventSensor
> #InternetConfiguration #Locale #MenuIcons #MultiByteFileStream
> #OSPlatform #ProcessBrowser #SecurityManager #SmalltalkImage
> #SmalltalkImage #SystemDictionary #SystemDictionary #UITheme
> #UUIDGenerator #WeakArray).
>
> InputEventSensor has startup and shutdown but no initialize
>
>
>
> Stef
> _______________________________________________
> Pharo-project mailing list
> Pharo-project(a)lists.gforge.inria.fr
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
March 13, 2010
[Pharo-project] Fwd: updated startup script
by Stéphane Ducasse
Begin forwarded message:
> From: Philippe Marschall <philippe.marschall(a)gmail.com>
> Date: March 13, 2010 7:29:52 PM GMT+01:00
> To: Stéphane Ducasse <stephane.ducasse(a)inria.fr>
> Subject: updated startup script
>
> The following script opens two collections. The first is the one we
> should send #initialize to. The second ones are the problematic ones
> that don't implement #initialize, currently only InputEventSensor.
>
> classes := ((SystemNavigation default allCallsOn:
> #'addToStartUpList:') collect: [ :e | e methodClass ]),
> ((SystemNavigation default allCallsOn: #'addToStartUpList:after:')
> collect: [ :e | e methodClass ]).
> startClassNames := classes collect: [ :n | n instanceSide name ].
> (Smalltalk class classVarNamed: 'StartUpList') do: [ :s |
> startClassNames remove: s ifAbsent: [] ].
>
> classes := ((SystemNavigation default allCallsOn:
> #'addToShutDownList:') collect: [ :e | e methodClass ]),
> ((SystemNavigation default allCallsOn: #'addToShutDownList:after:')
> collect: [ :e | e methodClass ]).
> stopClassNames := classes collect: [ :n | n instanceSide name ].
> (Smalltalk class classVarNamed: 'ShutDownList') do: [ :s |
> stopClassNames remove: s ifAbsent: [] ].
>
> (startClassNames, stopClassNames) asSet asSortedCollection inspect.
> ((startClassNames, stopClassNames) asSet asSortedCollection reject: [ :c |
> (Smalltalk globals classNamed: c) class includesSelector: #initialize
> ]) inspect
March 13, 2010
[Pharo-project] Startup description of the problem
by Stéphane Ducasse
Here is the reason why Clipboard was not well initialized and the general problem with the startup list if we execute Smalltalk initialize :)
in the startup list not complete (and cannot really because other classes may dynamically register themselves)
SmalltalkImage>>initializeStartUpList
"SmalltalkImage initializeStartUpList"
| oldList |
oldList := StartUpList.
StartUpList := OrderedCollection new.
"These get processed from the top down..."
#(
Delay
DisplayScreen
Cursor
InputEventFetcher
ProcessorScheduler "Starts low space watcher and bkground."
LanguageEnvironment
FileDirectory "Enables file stack dump and opens sources."
NaturalLanguageTranslator
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]]].
#(
PasteUpMorph
"ControlManager"
) do:[:clsName|
Smalltalk at: clsName ifPresent:[:cls| Smalltalk addToStartUpList: cls].
].
Now if we check the classes that have a addToStartUpList: call and that are not in the previous list.
We see that we missed a lot of them.
classes := ((SystemNavigation default allCallsOn: #addToStartUpList:)
collect: [ :e | e methodClass ]),
((SystemNavigation default allCallsOn: #addToStartUpList:after:)
collect: [ :e | e methodClass ]).
classNames := classes collect: [ :n | n instanceSide name ].
(Smalltalk class classVarNamed: 'StartUpList') do: [ :s |
classNames remove: s ifAbsent: [] ].
classNames asSortedCollection
a SortedCollection(#AutoStart #CPUWatcher #Clipboard #CommandHistory #ExternalSettings #FreeTypeFontProvider #FreeTypeSettings #HostSystemMenus #HostWindowProxy #InputEventSensor #InternetConfiguration #Locale #MenuIcons #MultiByteFileStream #OSPlatform #ProcessBrowser #SecurityManager #SmalltalkImage #SmalltalkImage #SystemDictionary #SystemDictionary #UITheme #UUIDGenerator #WeakArray).
InputEventSensor has startup and shutdown but no initialize
Stef
March 13, 2010
Re: [Pharo-project] Issue 2140 - Packages dirty after running the tests
by Stéphane Ducasse
Thanks a lot.
Stef
On Mar 13, 2010, at 6:48 PM, Jorge Ressia wrote:
> Hi,
>
> When running tests, Changes are being applied to the system and
> Packages are left dirty.
>
> Some of these issues have been solved in
>
> Name: Tests-JorgeRessia.128
> Author: JorgeRessia
> Time: 13 March 2010, 2:39:13 pm
> UUID: ae807242-d429-497f-916d-8d53aeffe87a
> Ancestors: Tests-JorgeRessia.127
>
>
> - Executing Compilation test silently
> - ATestCase in Tests-Traits created a class, now is done silently
> - In ChangeSetClass a DeleteMe package was created and the
> PackageOrganizer and the MCWorkingCopy
> were dirty. Now the package is deleted.
>
> Issues still remain to be fixed in:
> - Tests-Traits
> - Tests-Monticello
> - Tests-PrimCallController
> - Tests-SystemChangeNotifier
>
> Cheers,
>
> Jorge
>
> _______________________________________________
> Pharo-project mailing list
> Pharo-project(a)lists.gforge.inria.fr
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
March 13, 2010
Re: [Pharo-project] fun VM crash
by Stéphane Ducasse
The startUp mechanism has to be revised because it does not work well in a non monolithic image.
Apparently the initializeStartUp list only listed some classes from another century and we lost the current class that have been registered.
Stef
On Mar 13, 2010, at 6:37 PM, Stéphane Ducasse wrote:
> Apparently
>
> Clipboard classVarNamed: #Default put: nil
>
> fix the problem but it means that the Clipboard is not flushed in the shutdow phase.
>
> stef
>
> On Mar 13, 2010, at 6:12 PM, Stéphane Ducasse wrote:
>
>> Apparently this is probably due to a startup or shutdown problem after the change of Smalltalk -> SmalltalkImage current.
>> If we upgrade from 11254 to 11266 the problem is not there anymore but as soon as Now if we save and relaunch the image copy and paste kills the vm.
>>
>> Stef
>>
>>
>>
>>> If we copy from Squeak to textMate and from textMate to Pharo it crashes too.
>>>
>>> Process: Squeak VM Opt [8333]
>>> Path: /Applications/Squeak/Squeak 4.2.2beta1U.app/Contents/MacOS/Squeak VM Opt
>>> Identifier: org.squeak.Squeak
>>> Version: Squeak VM 4.2.2b1 (4.2.2b1)
>>> Code Type: X86 (Native)
>>> Parent Process: ??? [1]
>>>
>>> Date/Time: 2010-03-13 17:25:18.166 +0100
>>> OS Version: Mac OS X 10.6.2 (10C540)
>>> Report Version: 6
>>>
>>> Interval Since Last Report: 405287 sec
>>> Crashes Since Last Report: 6
>>> Per-App Interval Since Last Report: 4265460 sec
>>> Per-App Crashes Since Last Report: 4
>>> Anonymous UUID: 99B0623E-9CD5-4C95-ACCB-0B118DEF717F
>>>
>>> Exception Type: EXC_BAD_ACCESS (SIGABRT)
>>> Exception Codes: KERN_INVALID_ADDRESS at 0x0000000074006120
>>> Crashed Thread: 0 Dispatch queue: com.apple.main-thread
>>>
>>> Application Specific Information:
>>> abort() called
>>>
>>> Thread 0 Crashed: Dispatch queue: com.apple.main-thread
>>> 0 libSystem.B.dylib 0x92fe5732 __kill + 10
>>> 1 libSystem.B.dylib 0x92fe5724 kill$UNIX2003 + 32
>>> 2 libSystem.B.dylib 0x9307898d raise + 26
>>> 3 libSystem.B.dylib 0x9308ea44 abort + 93
>>> 4 org.squeak.Squeak 0x001061f1 sigsegv + 49
>>> 5 ??? 0xffffffff 0 + 4294967295
>>> 6 com.apple.HIServices 0x91b1c7f3 PasteboardSynchronize + 25
>>> 7 ...eak.ClipboardExtendedPlugin 0x007e1b2a sqPasteboardCopyItemFlavorDataformatformatLength + 74
>>> 8 ...eak.ClipboardExtendedPlugin 0x007e17a7 ioReadClipboardData + 199
>>> 9 org.squeak.Squeak 0x000e29ba primitiveExternalCall + 1706
>>>
>>> Thread 1: Dispatch queue: com.apple.libdispatch-manager
>>> 0 libSystem.B.dylib 0x92fab0ea kevent + 10
>>> 1 libSystem.B.dylib 0x92fab804 _dispatch_mgr_invoke + 215
>>> 2 libSystem.B.dylib 0x92faacc3 _dispatch_queue_invoke + 163
>>> 3 libSystem.B.dylib 0x92faaa68 _dispatch_worker_thread2 + 234
>>> 4 libSystem.B.dylib 0x92faa4f1 _pthread_wqthread + 390
>>> 5 libSystem.B.dylib 0x92faa336 start_wqthread + 30
>>>
>>> Thread 2:
>>> 0 libSystem.B.dylib 0x92f8493a semaphore_timedwait_signal_trap + 10
>>> 1 libSystem.B.dylib 0x92fb2445 _pthread_cond_wait + 1066
>>> 2 libSystem.B.dylib 0x92fe1028 pthread_cond_timedwait_relative_np + 47
>>> 3 ...ple.CoreServices.CarbonCore 0x96135235 TSWaitOnConditionTimedRelative + 242
>>> 4 ...ple.CoreServices.CarbonCore 0x96134f73 TSWaitOnSemaphoreCommon + 511
>>> 5 ...ple.CoreServices.CarbonCore 0x9615916b TimerThread + 97
>>> 6 libSystem.B.dylib 0x92fb1fbd _pthread_start + 345
>>> 7 libSystem.B.dylib 0x92fb1e42 thread_start + 34
>>>
>>> Thread 3:
>>> 0 libSystem.B.dylib 0x92faa182 __workq_kernreturn + 10
>>> 1 libSystem.B.dylib 0x92faa718 _pthread_wqthread + 941
>>> 2 libSystem.B.dylib 0x92faa336 start_wqthread + 30
>>>
>>> Thread 0 crashed with X86 Thread State (32-bit):
>>> eax: 0x00000000 ebx: 0x9308e9f3 ecx: 0xbfffe17c edx: 0x92fe5732
>>> edi: 0xa05bd6b8 esi: 0xbfffe4f0 ebp: 0xbfffe198 esp: 0xbfffe17c
>>> ss: 0x0000001f efl: 0x00000282 eip: 0x92fe5732 cs: 0x00000007
>>> ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
>>> cr2: 0xb0100f0c
>>>
>>> Binary Images:
>>> 0x1000 - 0x11efe7 +org.squeak.Squeak Squeak VM 4.2.2b1 (4.2.2b1) <51A879AB-94BF-0AE3-CB1F-3DE257DBE604> /Applications/Squeak/Squeak 4.2.2beta1U.app/Contents/MacOS/Squeak VM Opt
>>> 0x1fa000 - 0x1fbffd +com.1passwd.InputManager 2.11.0 (7643) <C73C9CFB-71A6-574F-9DFE-54CF1FDE8C74> /Library/InputManagers/1PasswdIM/1PasswdIM.bundle/Contents/MacOS/1PasswdIM
>>> 0x79c000 - 0x79fffb +com.Logitech.Control Center.Scroll Enhancer Loader 3.1.0 (3.1.0) <2F7F3421-9C99-1B20-E0D7-75CE73A97F05> /Library/InputManagers/LCC Scroll Enhancer Loader/LCC Scroll Enhancer Loader.bundle/Contents/MacOS/LCC Scroll Enhancer Loader
>>> 0x7e0000 - 0x7e1ff9 +org.squeak.ClipboardExtendedPlugin 1.1.0b1 (1.1.0b1) <5998493C-DF1A-4816-7970-C7BDC4865830> /Applications/Squeak/Squeak 4.2.2beta1U.app/Contents/Resources/ClipboardExtendedPlugin.bundle/Contents/MacOS/ClipboardExtendedPlugin
>>> 0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
>>> 0x9013b000 - 0x9013dff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
>>> 0x9013e000 - 0x90437fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
>>> 0x90438000 - 0x904e0ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
>>> 0x904fa000 - 0x904faff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
>>> 0x905a3000 - 0x905a6ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
>>> 0x905ae000 - 0x905efff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
>>> 0x90840000 - 0x9087affb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
>>> 0x9087b000 - 0x90aebffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
>>> 0x90aec000 - 0x90b56fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
>>> 0x90bb2000 - 0x90bcaff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
>>> 0x90bcb000 - 0x90c68fe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
>>> 0x90c69000 - 0x90c8bfef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
>>> 0x90cc4000 - 0x90ccbfff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
>>> 0x90ccc000 - 0x91033ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
>>> 0x91034000 - 0x91045ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
>>> 0x91046000 - 0x912a8fe7 com.apple.security 6.1.1 (37594) <9AA7D9BF-852F-111F-68AD-65DD760D4DF3> /System/Library/Frameworks/Security.framework/Versions/A/Security
>>> 0x912a9000 - 0x912efff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
>>> 0x913cf000 - 0x913d8ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
>>> 0x913d9000 - 0x91433ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
>>> 0x91434000 - 0x91434ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
>>> 0x91471000 - 0x91471ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
>>> 0x914a5000 - 0x91536fe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
>>> 0x9153a000 - 0x9154efe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
>>> 0x9154f000 - 0x91593fe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
>>> 0x91697000 - 0x916abffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
>>> 0x916ac000 - 0x9171bff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
>>> 0x91773000 - 0x91774ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
>>> 0x91775000 - 0x918f7fe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
>>> 0x919b6000 - 0x91a16fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
>>> 0x91a43000 - 0x91a69fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
>>> 0x91b13000 - 0x91b64ff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
>>> 0x91bae000 - 0x91c2efeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
>>> 0x91c2f000 - 0x91c32fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
>>> 0x91c4c000 - 0x91c5eff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
>>> 0x91c5f000 - 0x91ce1ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
>>> 0x91ce3000 - 0x91cedffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
>>> 0x91cee000 - 0x925ccff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
>>> 0x927a9000 - 0x927c9fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
>>> 0x927ec000 - 0x92c02ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
>>> 0x92c03000 - 0x92c47ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
>>> 0x92c48000 - 0x92c48ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
>>> 0x92c49000 - 0x92c59ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
>>> 0x92ddd000 - 0x92dfdfe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
>>> 0x92e00000 - 0x92ea7fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
>>> 0x92f66000 - 0x92f67ff7 com.apple.audio.units.AudioUnit 1.6.2 (1.6.2) <845D5E0D-870D-B7E8-AAC5-8364AC341AA1> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
>>> 0x92f68000 - 0x92f83ff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
>>> 0x92f84000 - 0x93128feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
>>> 0x9328a000 - 0x9338bfe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
>>> 0x9338c000 - 0x934bafe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
>>> 0x934bb000 - 0x934d7fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
>>> 0x93623000 - 0x936d1ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
>>> 0x936e8000 - 0x93731fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
>>> 0x946db000 - 0x94777fe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
>>> 0x9488f000 - 0x94927fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
>>> 0x94928000 - 0x9492cff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
>>> 0x9492d000 - 0x94933fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
>>> 0x94934000 - 0x94942fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
>>> 0x94b96000 - 0x94c60fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
>>> 0x94c61000 - 0x94c68ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
>>> 0x94c6c000 - 0x94caefe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
>>> 0x94ce8000 - 0x94e5ffef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
>>> 0x94e60000 - 0x94e6cff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
>>> 0x94e6d000 - 0x94e9eff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
>>> 0x94e9f000 - 0x94eacff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
>>> 0x94ef4000 - 0x94f41feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
>>> 0x95081000 - 0x950e5ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
>>> 0x950e6000 - 0x95123ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
>>> 0x95124000 - 0x95174ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
>>> 0x95175000 - 0x95175ff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
>>> 0x95176000 - 0x95499fef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
>>> 0x9549c000 - 0x954b1fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
>>> 0x95534000 - 0x95541ff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
>>> 0x95542000 - 0x95d254b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
>>> 0x95ea0000 - 0x95eabff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
>>> 0x95eac000 - 0x95ee1ff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
>>> 0x95fea000 - 0x95ff4fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
>>> 0x96072000 - 0x96074ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
>>> 0x960ee000 - 0x9640dfe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
>>> 0x9640e000 - 0x964dffe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
>>> 0x964e0000 - 0x96915ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
>>> 0x9699b000 - 0x9699eff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
>>> 0x96ad7000 - 0x96c93fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
>>> 0x96c94000 - 0x96c99ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
>>> 0x96c9a000 - 0x96c9aff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
>>> 0x96ce9000 - 0x96dc6ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
>>> 0x96dc7000 - 0x96debff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
>>> 0x96e24000 - 0x96ed3ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
>>> 0x96ed4000 - 0x96f17ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
>>> 0x96f18000 - 0x96fc5fe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
>>> 0x96fd1000 - 0x96fefff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
>>> 0x96ffb000 - 0x97075fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
>>> 0x972a4000 - 0x972a4ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
>>> 0x972a5000 - 0x9735efe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
>>> 0x9739e000 - 0x973a2ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
>>> 0x973a3000 - 0x973adff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
>>> 0x97480000 - 0x9755aff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
>>> 0x97709000 - 0x9770dff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
>>> 0x97a60000 - 0x97a93ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
>>> 0x97f43000 - 0x97f93fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
>>> 0x982b1000 - 0x983a7ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
>>> 0x983a8000 - 0x983ddff7 libcups.2.dylib ??? (???) <AFDC4D3C-0FF4-D459-B26C-4BA1093F9142> /usr/lib/libcups.2.dylib
>>> 0x983de000 - 0x98491fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
>>> 0x98541000 - 0x98544ff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
>>> 0x985d8000 - 0x985d8ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
>>> 0x98726000 - 0x9882afe7 libcrypto.0.9.8.dylib ??? (???) <2E58547A-91CC-4C1A-9FCC-DA7515FDB68A> /usr/lib/libcrypto.0.9.8.dylib
>>> 0x9889a000 - 0x98bf8fff com.apple.RawCamera.bundle 3.0.1 (523) <BB20C4C8-ACEE-7B40-C1A0-4BF4EC6B8796> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
>>> 0x99465000 - 0x99591feb com.apple.audio.toolbox.AudioToolbox 1.6.2 (1.6.2) <9AAFDCBE-C68C-3BB3-8089-83CD2C0B4ED7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
>>> 0x99593000 - 0x995bbff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
>>> 0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
>>>
>>> Model: MacBookPro5,1, BootROM MBP51.007E.B05, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.33f8
>>> Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
>>> Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
>>> Memory Module: global_name
>>> AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.26)
>>> Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
>>> Network Service: Ethernet, Ethernet, en0
>>> Network Service: AirPort, AirPort, en1
>>> Serial ATA Device: Hitachi HTS723232L9SA62, 298.09 GB
>>> Serial ATA Device: MATSHITADVD-R UJ-868
>>> USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
>>> USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
>>> USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
>>> USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
>>> USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000
>>>
>>> On Mar 13, 2010, at 5:24 PM, Stéphane Ducasse wrote:
>>>
>>>> Hi
>>>>
>>>> We have a fun crash.
>>>> If we copy and paste a method from squeak to pharo, the VM crashes
>>>>
>>>> <PharoDebug.log.zip>
>>>>
>>>> Stef and Philippe_______________________________________________
>>>> Pharo-project mailing list
>>>> Pharo-project(a)lists.gforge.inria.fr
>>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>>
>>>
>>> _______________________________________________
>>> Pharo-project mailing list
>>> Pharo-project(a)lists.gforge.inria.fr
>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>
>>
>> _______________________________________________
>> Pharo-project mailing list
>> Pharo-project(a)lists.gforge.inria.fr
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>
> _______________________________________________
> Pharo-project mailing list
> Pharo-project(a)lists.gforge.inria.fr
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
March 13, 2010
[Pharo-project] Issue 2140 - Packages dirty after running the tests
by Jorge Ressia
Hi,
When running tests, Changes are being applied to the system and
Packages are left dirty.
Some of these issues have been solved in
Name: Tests-JorgeRessia.128
Author: JorgeRessia
Time: 13 March 2010, 2:39:13 pm
UUID: ae807242-d429-497f-916d-8d53aeffe87a
Ancestors: Tests-JorgeRessia.127
- Executing Compilation test silently
- ATestCase in Tests-Traits created a class, now is done silently
- In ChangeSetClass a DeleteMe package was created and the
PackageOrganizer and the MCWorkingCopy
were dirty. Now the package is deleted.
Issues still remain to be fixed in:
- Tests-Traits
- Tests-Monticello
- Tests-PrimCallController
- Tests-SystemChangeNotifier
Cheers,
Jorge
March 13, 2010
[Pharo-project] Issue 2030 - fixed
by Jorge Ressia
Hi,
The shadowing was detected by the Encoder>>bindTemp: for method added
by Traits. A new validation was added for detecting this special case
and avoid the error.
Name: SLICE-ShadowingOfTraitsIssue2030-JorgeRessia.2
Author: JorgeRessia
Time: 13 March 2010, 4:34:47 pm
UUID: b7513eee-36ef-4fac-b976-9169e7d94c1c
Ancestors: SLICE-ShadowingOfTraitsIssue2030-JorgeRessia.1
Dependencies: Compiler-JorgeRessia.194, Tests-JorgeRessia.129
Cheers,
Jorge
March 13, 2010
Re: [Pharo-project] fun VM crash
by Stéphane Ducasse
Apparently
Clipboard classVarNamed: #Default put: nil
fix the problem but it means that the Clipboard is not flushed in the shutdow phase.
stef
On Mar 13, 2010, at 6:12 PM, Stéphane Ducasse wrote:
> Apparently this is probably due to a startup or shutdown problem after the change of Smalltalk -> SmalltalkImage current.
> If we upgrade from 11254 to 11266 the problem is not there anymore but as soon as Now if we save and relaunch the image copy and paste kills the vm.
>
> Stef
>
>
>
>> If we copy from Squeak to textMate and from textMate to Pharo it crashes too.
>>
>> Process: Squeak VM Opt [8333]
>> Path: /Applications/Squeak/Squeak 4.2.2beta1U.app/Contents/MacOS/Squeak VM Opt
>> Identifier: org.squeak.Squeak
>> Version: Squeak VM 4.2.2b1 (4.2.2b1)
>> Code Type: X86 (Native)
>> Parent Process: ??? [1]
>>
>> Date/Time: 2010-03-13 17:25:18.166 +0100
>> OS Version: Mac OS X 10.6.2 (10C540)
>> Report Version: 6
>>
>> Interval Since Last Report: 405287 sec
>> Crashes Since Last Report: 6
>> Per-App Interval Since Last Report: 4265460 sec
>> Per-App Crashes Since Last Report: 4
>> Anonymous UUID: 99B0623E-9CD5-4C95-ACCB-0B118DEF717F
>>
>> Exception Type: EXC_BAD_ACCESS (SIGABRT)
>> Exception Codes: KERN_INVALID_ADDRESS at 0x0000000074006120
>> Crashed Thread: 0 Dispatch queue: com.apple.main-thread
>>
>> Application Specific Information:
>> abort() called
>>
>> Thread 0 Crashed: Dispatch queue: com.apple.main-thread
>> 0 libSystem.B.dylib 0x92fe5732 __kill + 10
>> 1 libSystem.B.dylib 0x92fe5724 kill$UNIX2003 + 32
>> 2 libSystem.B.dylib 0x9307898d raise + 26
>> 3 libSystem.B.dylib 0x9308ea44 abort + 93
>> 4 org.squeak.Squeak 0x001061f1 sigsegv + 49
>> 5 ??? 0xffffffff 0 + 4294967295
>> 6 com.apple.HIServices 0x91b1c7f3 PasteboardSynchronize + 25
>> 7 ...eak.ClipboardExtendedPlugin 0x007e1b2a sqPasteboardCopyItemFlavorDataformatformatLength + 74
>> 8 ...eak.ClipboardExtendedPlugin 0x007e17a7 ioReadClipboardData + 199
>> 9 org.squeak.Squeak 0x000e29ba primitiveExternalCall + 1706
>>
>> Thread 1: Dispatch queue: com.apple.libdispatch-manager
>> 0 libSystem.B.dylib 0x92fab0ea kevent + 10
>> 1 libSystem.B.dylib 0x92fab804 _dispatch_mgr_invoke + 215
>> 2 libSystem.B.dylib 0x92faacc3 _dispatch_queue_invoke + 163
>> 3 libSystem.B.dylib 0x92faaa68 _dispatch_worker_thread2 + 234
>> 4 libSystem.B.dylib 0x92faa4f1 _pthread_wqthread + 390
>> 5 libSystem.B.dylib 0x92faa336 start_wqthread + 30
>>
>> Thread 2:
>> 0 libSystem.B.dylib 0x92f8493a semaphore_timedwait_signal_trap + 10
>> 1 libSystem.B.dylib 0x92fb2445 _pthread_cond_wait + 1066
>> 2 libSystem.B.dylib 0x92fe1028 pthread_cond_timedwait_relative_np + 47
>> 3 ...ple.CoreServices.CarbonCore 0x96135235 TSWaitOnConditionTimedRelative + 242
>> 4 ...ple.CoreServices.CarbonCore 0x96134f73 TSWaitOnSemaphoreCommon + 511
>> 5 ...ple.CoreServices.CarbonCore 0x9615916b TimerThread + 97
>> 6 libSystem.B.dylib 0x92fb1fbd _pthread_start + 345
>> 7 libSystem.B.dylib 0x92fb1e42 thread_start + 34
>>
>> Thread 3:
>> 0 libSystem.B.dylib 0x92faa182 __workq_kernreturn + 10
>> 1 libSystem.B.dylib 0x92faa718 _pthread_wqthread + 941
>> 2 libSystem.B.dylib 0x92faa336 start_wqthread + 30
>>
>> Thread 0 crashed with X86 Thread State (32-bit):
>> eax: 0x00000000 ebx: 0x9308e9f3 ecx: 0xbfffe17c edx: 0x92fe5732
>> edi: 0xa05bd6b8 esi: 0xbfffe4f0 ebp: 0xbfffe198 esp: 0xbfffe17c
>> ss: 0x0000001f efl: 0x00000282 eip: 0x92fe5732 cs: 0x00000007
>> ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
>> cr2: 0xb0100f0c
>>
>> Binary Images:
>> 0x1000 - 0x11efe7 +org.squeak.Squeak Squeak VM 4.2.2b1 (4.2.2b1) <51A879AB-94BF-0AE3-CB1F-3DE257DBE604> /Applications/Squeak/Squeak 4.2.2beta1U.app/Contents/MacOS/Squeak VM Opt
>> 0x1fa000 - 0x1fbffd +com.1passwd.InputManager 2.11.0 (7643) <C73C9CFB-71A6-574F-9DFE-54CF1FDE8C74> /Library/InputManagers/1PasswdIM/1PasswdIM.bundle/Contents/MacOS/1PasswdIM
>> 0x79c000 - 0x79fffb +com.Logitech.Control Center.Scroll Enhancer Loader 3.1.0 (3.1.0) <2F7F3421-9C99-1B20-E0D7-75CE73A97F05> /Library/InputManagers/LCC Scroll Enhancer Loader/LCC Scroll Enhancer Loader.bundle/Contents/MacOS/LCC Scroll Enhancer Loader
>> 0x7e0000 - 0x7e1ff9 +org.squeak.ClipboardExtendedPlugin 1.1.0b1 (1.1.0b1) <5998493C-DF1A-4816-7970-C7BDC4865830> /Applications/Squeak/Squeak 4.2.2beta1U.app/Contents/Resources/ClipboardExtendedPlugin.bundle/Contents/MacOS/ClipboardExtendedPlugin
>> 0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
>> 0x9013b000 - 0x9013dff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
>> 0x9013e000 - 0x90437fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
>> 0x90438000 - 0x904e0ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
>> 0x904fa000 - 0x904faff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
>> 0x905a3000 - 0x905a6ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
>> 0x905ae000 - 0x905efff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
>> 0x90840000 - 0x9087affb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
>> 0x9087b000 - 0x90aebffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
>> 0x90aec000 - 0x90b56fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
>> 0x90bb2000 - 0x90bcaff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
>> 0x90bcb000 - 0x90c68fe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
>> 0x90c69000 - 0x90c8bfef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
>> 0x90cc4000 - 0x90ccbfff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
>> 0x90ccc000 - 0x91033ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
>> 0x91034000 - 0x91045ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
>> 0x91046000 - 0x912a8fe7 com.apple.security 6.1.1 (37594) <9AA7D9BF-852F-111F-68AD-65DD760D4DF3> /System/Library/Frameworks/Security.framework/Versions/A/Security
>> 0x912a9000 - 0x912efff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
>> 0x913cf000 - 0x913d8ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
>> 0x913d9000 - 0x91433ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
>> 0x91434000 - 0x91434ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
>> 0x91471000 - 0x91471ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
>> 0x914a5000 - 0x91536fe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
>> 0x9153a000 - 0x9154efe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
>> 0x9154f000 - 0x91593fe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
>> 0x91697000 - 0x916abffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
>> 0x916ac000 - 0x9171bff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
>> 0x91773000 - 0x91774ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
>> 0x91775000 - 0x918f7fe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
>> 0x919b6000 - 0x91a16fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
>> 0x91a43000 - 0x91a69fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
>> 0x91b13000 - 0x91b64ff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
>> 0x91bae000 - 0x91c2efeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
>> 0x91c2f000 - 0x91c32fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
>> 0x91c4c000 - 0x91c5eff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
>> 0x91c5f000 - 0x91ce1ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
>> 0x91ce3000 - 0x91cedffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
>> 0x91cee000 - 0x925ccff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
>> 0x927a9000 - 0x927c9fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
>> 0x927ec000 - 0x92c02ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
>> 0x92c03000 - 0x92c47ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
>> 0x92c48000 - 0x92c48ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
>> 0x92c49000 - 0x92c59ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
>> 0x92ddd000 - 0x92dfdfe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
>> 0x92e00000 - 0x92ea7fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
>> 0x92f66000 - 0x92f67ff7 com.apple.audio.units.AudioUnit 1.6.2 (1.6.2) <845D5E0D-870D-B7E8-AAC5-8364AC341AA1> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
>> 0x92f68000 - 0x92f83ff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
>> 0x92f84000 - 0x93128feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
>> 0x9328a000 - 0x9338bfe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
>> 0x9338c000 - 0x934bafe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
>> 0x934bb000 - 0x934d7fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
>> 0x93623000 - 0x936d1ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
>> 0x936e8000 - 0x93731fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
>> 0x946db000 - 0x94777fe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
>> 0x9488f000 - 0x94927fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
>> 0x94928000 - 0x9492cff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
>> 0x9492d000 - 0x94933fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
>> 0x94934000 - 0x94942fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
>> 0x94b96000 - 0x94c60fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
>> 0x94c61000 - 0x94c68ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
>> 0x94c6c000 - 0x94caefe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
>> 0x94ce8000 - 0x94e5ffef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
>> 0x94e60000 - 0x94e6cff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
>> 0x94e6d000 - 0x94e9eff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
>> 0x94e9f000 - 0x94eacff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
>> 0x94ef4000 - 0x94f41feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
>> 0x95081000 - 0x950e5ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
>> 0x950e6000 - 0x95123ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
>> 0x95124000 - 0x95174ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
>> 0x95175000 - 0x95175ff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
>> 0x95176000 - 0x95499fef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
>> 0x9549c000 - 0x954b1fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
>> 0x95534000 - 0x95541ff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
>> 0x95542000 - 0x95d254b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
>> 0x95ea0000 - 0x95eabff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
>> 0x95eac000 - 0x95ee1ff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
>> 0x95fea000 - 0x95ff4fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
>> 0x96072000 - 0x96074ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
>> 0x960ee000 - 0x9640dfe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
>> 0x9640e000 - 0x964dffe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
>> 0x964e0000 - 0x96915ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
>> 0x9699b000 - 0x9699eff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
>> 0x96ad7000 - 0x96c93fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
>> 0x96c94000 - 0x96c99ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
>> 0x96c9a000 - 0x96c9aff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
>> 0x96ce9000 - 0x96dc6ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
>> 0x96dc7000 - 0x96debff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
>> 0x96e24000 - 0x96ed3ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
>> 0x96ed4000 - 0x96f17ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
>> 0x96f18000 - 0x96fc5fe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
>> 0x96fd1000 - 0x96fefff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
>> 0x96ffb000 - 0x97075fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
>> 0x972a4000 - 0x972a4ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
>> 0x972a5000 - 0x9735efe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
>> 0x9739e000 - 0x973a2ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
>> 0x973a3000 - 0x973adff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
>> 0x97480000 - 0x9755aff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
>> 0x97709000 - 0x9770dff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
>> 0x97a60000 - 0x97a93ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
>> 0x97f43000 - 0x97f93fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
>> 0x982b1000 - 0x983a7ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
>> 0x983a8000 - 0x983ddff7 libcups.2.dylib ??? (???) <AFDC4D3C-0FF4-D459-B26C-4BA1093F9142> /usr/lib/libcups.2.dylib
>> 0x983de000 - 0x98491fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
>> 0x98541000 - 0x98544ff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
>> 0x985d8000 - 0x985d8ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
>> 0x98726000 - 0x9882afe7 libcrypto.0.9.8.dylib ??? (???) <2E58547A-91CC-4C1A-9FCC-DA7515FDB68A> /usr/lib/libcrypto.0.9.8.dylib
>> 0x9889a000 - 0x98bf8fff com.apple.RawCamera.bundle 3.0.1 (523) <BB20C4C8-ACEE-7B40-C1A0-4BF4EC6B8796> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
>> 0x99465000 - 0x99591feb com.apple.audio.toolbox.AudioToolbox 1.6.2 (1.6.2) <9AAFDCBE-C68C-3BB3-8089-83CD2C0B4ED7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
>> 0x99593000 - 0x995bbff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
>> 0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
>>
>> Model: MacBookPro5,1, BootROM MBP51.007E.B05, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.33f8
>> Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
>> Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
>> Memory Module: global_name
>> AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.26)
>> Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
>> Network Service: Ethernet, Ethernet, en0
>> Network Service: AirPort, AirPort, en1
>> Serial ATA Device: Hitachi HTS723232L9SA62, 298.09 GB
>> Serial ATA Device: MATSHITADVD-R UJ-868
>> USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
>> USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
>> USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
>> USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
>> USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000
>>
>> On Mar 13, 2010, at 5:24 PM, Stéphane Ducasse wrote:
>>
>>> Hi
>>>
>>> We have a fun crash.
>>> If we copy and paste a method from squeak to pharo, the VM crashes
>>>
>>> <PharoDebug.log.zip>
>>>
>>> Stef and Philippe_______________________________________________
>>> Pharo-project mailing list
>>> Pharo-project(a)lists.gforge.inria.fr
>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>
>>
>> _______________________________________________
>> Pharo-project mailing list
>> Pharo-project(a)lists.gforge.inria.fr
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>
> _______________________________________________
> Pharo-project mailing list
> Pharo-project(a)lists.gforge.inria.fr
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
March 13, 2010
Re: [Pharo-project] Polymorph
by Miguel Enrique Cobá Martinez
El sáb, 13-03-2010 a las 16:56 +0000, Gary Chambers escribió:
> All "fun" on squeak-dev...
>
> Getting close to abandoning support for Polymorph in Squeak at all
> now...
> Only a few apps based on 3.9 left here. Not sure they need any of the
> ongoing improvements.
>
It is your time and effort what you'll donate. So is up to you if you
want to maintain two versions. I think that nobody will have arguments
for complain if you decide not to maintain but the Pharo version.
> So, the question is, how would we want future additions/changes/fixes
> to apply in Pharo.
> Having Polymorph as an external (mergable, not loadable) package has
> worked well for us, as much as it can be well.
I think that if it is possible to have a external, squeaksource
repository hosted, monticello (and later a ConfigurationOfPolymorph)
that would be the best. Because:
- If someday someone wants to add support for Squeak (supposing that
there is only Pharo support) they have the packages to work on.
- If they are in an external repository, they can add per-platform
packages to handle the differences between squeak/pharo/cuis
- Metacello can load the different packages depending on the platform
without problems
- What we want is a smaller image every day. If the package is loadable
(with Metacello for example) a script to build the image from a minimal,
non-ui image is possible
>
> Perhaps changesets are the way to go from here... opinions/advice
> welcome...
>
Unless that there is something that monticello (and pre and post scripts
from monticello) can't handle, I will avoid changesets. Also, if you use
changesets, where they will be hosted, not in the list please, that is a
nightmare for the people searching for a given .cs.
Keep the good work.
Cheers
> Regards, Gary
>
> _______________________________________________
> Pharo-project mailing list
> Pharo-project(a)lists.gforge.inria.fr
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
--
Miguel Cobá
http://miguel.leugim.com.mx
March 13, 2010
Re: [Pharo-project] Problems with ConfigurationOfMetacello in PharoCore 10514
by Dale Henrichs
I was a bit premature on claiming victory. The machine that gemsource is running on is unstable and we plan to move gemsource onto a different machine, so we'll be taking gemsource down one more time this morning while we physically move gemsource to the new machine ... I'll send mail when that's complete...
Dale
----- "Dale Henrichs" <dale.henrichs(a)gemstone.com> wrote:
| gemsource is back online ... the server crashed and we had a hiccup or
| two on restarting gemstone ...
|
| Dale
| ----- "Dale Henrichs" <dale.henrichs(a)gemstone.com> wrote:
|
| | We are apparently having hardware problems with the gemsource
| | server... we are working on it...
| |
| | Dale
| | ----- "Miguel Enrique Cobá Martinez" <miguel.coba(a)gmail.com> wrote:
| |
| | | More info:
| | |
| | | http://seaside.gemstone.com/
| | |
| | | is working ok
| | |
| | | it is just the path:
| | |
| | | http://seaside.gemstone.com/ss/
| | |
| | | that throws the error.
| | |
| | | Maybe the image ist kapput :)
| | | --
| | | Miguel Cobá
| | | http://miguel.leugim.com.mx
| |
| | _______________________________________________
| | Pharo-project mailing list
| | Pharo-project(a)lists.gforge.inria.fr
| | http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
March 13, 2010