Search found 9 matches

by frederick
Sun Jan 26, 2025 6:18 pm
Forum: SDK Support
Topic: blankermodule.h 54.16 and AmigaOS namespace
Replies: 2
Views: 64114

Re: blankermodule.h 54.16 and AmigaOS namespace

Thanks a lot ! :)
by frederick
Thu Jan 09, 2025 12:28 am
Forum: SDK Support
Topic: blankermodule.h 54.16 and AmigaOS namespace
Replies: 2
Views: 64114

blankermodule.h 54.16 and AmigaOS namespace

Hello everyone,

Lately I've been working on a blanker project using C++.
I noticed that the AmigaOS namespace is missing from the blankermodule.h include file .

Of course it can be worked around but as I'm using the very cool Walkero docker images, I would prefer to have a fixed include file ...
by frederick
Wed Jul 31, 2019 12:00 pm
Forum: Platform: AmigaOne X5000
Topic: Trying to find X5000 U-Boot File
Replies: 11
Views: 15597

Re: Trying to find X5000 U-Boot File

Thanks a lot for the clarifications, I'll check with my dealer then !
by frederick
Wed Jul 31, 2019 11:54 am
Forum: Platform: AmigaOne X5000
Topic: Trying to find X5000 U-Boot File
Replies: 11
Views: 15597

Re: Trying to find X5000 U-Boot File

Same issue here, when I execute : version full bootsd.resource , I'm getting version number 54.5 which doesn't look very fresh.
If someone has a moment to do a "dd" of his U-Boot SD card, it would be greatly appreciated :)
by frederick
Wed Dec 05, 2018 10:01 am
Forum: General Developer Support
Topic: Is Boehm Garbage Collector available on OS4 ?
Replies: 4
Views: 6321

Re: Is Boehm Garbage Collector available on OS4 ?

Well, unlike C++, Obj-C has no RAII/Scope bounded "facilities" to manage memory.
So without a "smart" compiler as Clang that supports ARC (automatic reference counting) and the adequate Obj-C runtime, it's quite difficult to fully avoid memory leaks.
POC (Portable object compiler) is actually a ...
by frederick
Tue Dec 04, 2018 9:29 am
Forum: General Developer Support
Topic: Is Boehm Garbage Collector available on OS4 ?
Replies: 4
Views: 6321

Re: Is Boehm Garbage Collector available on OS4 ?

My idea was to evaluate the "Portable Object Compiler" Obj-C compiler with its runtime library.
This runtime library can use the boehm-gc, as it is definitely more convenient to use than object manual reference counting. :-)
by frederick
Mon Dec 03, 2018 2:17 pm
Forum: General Developer Support
Topic: Is Boehm Garbage Collector available on OS4 ?
Replies: 4
Views: 6321

Is Boehm Garbage Collector available on OS4 ?

Hello everybody,

I'm wondering if the Boehm GC is available under OS4. I saw references to Amiga in the project, but I suspect them to be related to OS3.
Are there any running incarnations of it available ?

Thanks !
by frederick
Sun Nov 18, 2018 5:14 pm
Forum: General Developer Support
Topic: Is resource.library officially dead ?
Replies: 2
Views: 5581

Re: Is resource.library officially dead ?

Thanks a lot for the fast answer. Makes definitely sense. :)
by frederick
Sun Nov 18, 2018 2:58 pm
Forum: General Developer Support
Topic: Is resource.library officially dead ?
Replies: 2
Views: 5581

Is resource.library officially dead ?

Hello everybody,

I was playing with some Reaction related code lately, and I felt on the resource.library autodoc.
Then I wondered if this way of building UIs was still relevant today ?
And if it's not the case (very likely though), is it certified somewhere that one can consider resource.library ...