Re: [Pharo-dev] [ANN] PharoNOS

2017-03-22 Thread jan.struz
It is working now, thanks for feedback. Link here - Download the latest build artifact for PharoNOS - Save The World! -- View this message in context:

Re: [Pharo-dev] [ANN] PharoNOS

2017-03-22 Thread jan.struz
Hi Hernan, the disk image is built on CI, you can find it under "Pipelines", go to https://gitlab.com/johnnyzz/pharo-nos-build/pipelines and you will see the download button ("Download artifacts"). The archive contains the raw disk image,

Re: [Pharo-dev] [ANN] PharoNOS

2017-03-19 Thread jan.struz
Hi Stef, what I want, is NativeBoost for Pharo 5+. Because we could do this: primInPortByte: portNumber primitive: primitiveNativeCall module: NativeBoostPlugin error: errorCode^ self nbCallout function: #(uint8 ( uint16 portNumber )) emit: [:gen | | asm result

Re: [Pharo-dev] [ANN] PharoNOS

2017-03-18 Thread jan.struz
I forgot, the source points to repository @ smalltalkhub http://smalltalkhub.com/#!/~JanStruz/PharoNOS/ - Save The World! -- View this message in context: http://forum.world.st/ANN-PharoNOS-tp4939247p4939249.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.

[Pharo-dev] [ANN] PharoNOS

2017-03-18 Thread jan.struz
Hi, I successfully ported SqueakNOS to Pharo, and want to share it with you! It works with Pharo 4.0 image, networking included, ping works! What is different: - I use my own CMake build file, with "out-of-tree" build support, instead of "build.xyz" directories inside source tree + some template

Re: [Pharo-dev] platforms/Nopsys submodule

2017-03-18 Thread jan.struz
Announcement here: http://forum.world.st/ANN-PharoNOS-td4939247.html - Save The World! -- View this message in context: http://forum.world.st/platforms-Nopsys-submodule-tp4939215p4939248.html Sent from the Pharo Smalltalk Developers

Re: [Pharo-dev] platforms/Nopsys submodule

2017-03-18 Thread jan.struz
Hi, please stop for a while... I want to show you something... Actually it is already done... - Save The World! -- View this message in context: http://forum.world.st/platforms-Nopsys-submodule-tp4939215p4939230.html Sent from the

Re: [Pharo-dev] Debugger recursion

2013-08-30 Thread jan.struz
Martinez Peck wrote On Wed, Aug 28, 2013 at 11:18 AM, jan.struz lt; public+pharo@ gt; wrote: Hi all, I have a solution for the recursion in Pharo 2.0. (For those subclassing ProtoObject, of course :-) ) If the subclass of ProtoObject implements #class, then the Debugger is happy (will open

Re: [Pharo-dev] Debugger recursion

2013-08-30 Thread jan.struz
and passing by. On 30 August 2013 17:42, Marcus Denker lt; marcus.denker@ gt; wrote: On Aug 30, 2013, at 5:13 PM, jan.struz lt; public+pharo@ gt; wrote: one more endless loop, on Pharo3 Pharo2, evaluate this code: BreakpointManager installInClass: FileSystem selector

Re: [Pharo-dev] Debugger recursion

2013-08-28 Thread jan.struz
Hi all, I have a solution for the recursion in Pharo 2.0. (For those subclassing ProtoObject, of course :-) ) If the subclass of ProtoObject implements #class, then the Debugger is happy (will open a debugger). #class is the first message sent by Debugger, to continue with full debugger deeper

Re: [Pharo-dev] Debugger recursion

2013-08-27 Thread jan.struz
tried to have a look with the new debugger and inspectors in Pharo 3 but there is still some work to do. 2013/8/24 jan.struz lt; public+pharo@ gt; Stéphane Ducasse wrote On Aug 23, 2013, at 7:13 PM, jan.struz lt; public+pharo@ gt; wrote: Proxy implementation did you have

Re: [Pharo-dev] Debugger recursion

2013-08-24 Thread jan.struz
Stéphane Ducasse wrote On Aug 23, 2013, at 7:13 PM, jan.struz lt; public+pharo@ gt; wrote: Proxy implementation did you have a look at Ghost because mariano spent nearly a year on it. I do not really know what are the messages supposed to be supported by ProtoObject to be debugged

Re: [Pharo-dev] Debugger recursion

2013-08-23 Thread jan.struz
the code: ProtoObject subclass: #A instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: '_Test'. AdoesNotUnderstand: aMessage self halt. ^ nil A new kiss. - Save The World! -- View this message in context:

Re: [Pharo-dev] Debugger recursion

2013-08-23 Thread jan.struz
Proxy implementation Stéphane Ducasse wrote why do you inherit from protoObject? Stef On Aug 23, 2013, at 12:34 PM, jan.struz lt; public+pharo@ gt; wrote: the code: ProtoObject subclass: #A instanceVariableNames: '' classVariableNames: '' poolDictionaries

[Pharo-dev] Debugger recursion

2013-08-22 Thread jan.struz
Hi, try this: This will start opening infinite number of debuggers, because of AdoesNotUnderstand: #halt. Ok, so, if I replace /self halt/ with /Halt signal/, it will do the same, but now because of AdoesNotUnderstand: #inspector. But in both cases, after successfully (before stack is full)