Search found 40 matches
- Thu Apr 23, 2015 9:39 am
- Forum: SDK Support
- Topic: How to turn off deprecated warnings
- Replies: 20
- Views: 19661
Re: How to turn off deprecated warnings
Okay, -DDEPRECATED= does the trick. A more elegant solution like -D__NO_DEPRECATED__ would be nice, though. The point of flagging things as deprecated is to give a hint to developers to change their code to no longer use the deprecated function. As such, a special "__NO_DEPRECATED__" is a...
- Sun Dec 07, 2014 12:16 pm
- Forum: Platform: Classic
- Topic: Changing SWAP priority
- Replies: 11
- Views: 18189
Re: Changing SWAP priority
so at the end: SWAP is actually useless IMHO :ugeek: We don´t need SWAP, we need RAM! There is no difference using SLOW SWAP or using SLOW RAM....IMHO IMHO ? This isn't an issue of opinion, but of fact. You are leaving out the most important part in the equation, that of latency, which is HORRIBLE ...
- Wed Oct 29, 2014 3:20 pm
- Forum: Platform: AmigaOne 500 and Sam series
- Topic: Sam460CR + OS4.1 Final Edition question!
- Replies: 17
- Views: 22990
Re: Sam460CR + OS4.1 Final Edition question!
YesEverblue wrote:So the 'lite' version WILL be included on OS4.1 FE disc, right?
- Wed Oct 29, 2014 3:19 pm
- Forum: Platform: Classic
- Topic: AmigaOS 4.1 Final Edition for classic
- Replies: 56
- Views: 73962
Re: AmigaOS 4.1 Final Edition for classic
What does that exactly mean in the case of FE classic? What type of memory can be defined as "extended'' and how does it work? Is it an alternative to the 'swap' memory which can be either Hard disk or Zorro III memory? For machines with less than 2 GB of physical memory, this is mostly aimed ...
- Wed Oct 29, 2014 3:16 pm
- Forum: General AmigaOS
- Topic: AmigaOS 4.1 final edition?
- Replies: 31
- Views: 12107
Re: AmigaOS 4.1 final edition?
It tastes as a soldout, the last squeeze of our pockets before os4.2 comes out? The last squeeze ? Give me a break, the last time you had to actually take money out of your pocket for OS4 was in 2008, that's six years ago, with a lot of updates in the meantime. Don't want it ? Don't buy it, as easy...
- Sat Oct 11, 2014 7:54 am
- Forum: Platform: AmigaOne X1000
- Topic: Not compatible Radeon 9250 PCI
- Replies: 3
- Views: 4460
Re: Not compatible Radeon 9250 PCI
Honest question, why use a PCI graphics card with the X1000 ?
- Wed Jun 18, 2014 2:30 pm
- Forum: General Developer Support
- Topic: cpu.c: X1000 using kernel,debug + MUNGE freezes
- Replies: 4
- Views: 3553
Re: cpu.c: X1000 using kernel,debug + MUNGE freezes
I'm also not quite sure what the mutices around the setting of switch and launch points should accomplish ? Regarding the idler task, make sure it won't persist after the main task exited. Usually, you would catch a sempahore or mutex at the start of the code and release it before exiting. The main ...
- Wed Jun 18, 2014 2:27 pm
- Forum: General Developer Support
- Topic: cpu.c: X1000 using kernel,debug + MUNGE freezes
- Replies: 4
- Views: 3553
Re: cpu.c: X1000 using kernel,debug + MUNGE freezes
One thing, probably not the cause, but please, PLEASE: pause_req = IExec->AllocVecTags(sizeof(struct TimeRequest), AVT_ClearWithValue,0, TAG_DONE); if(!pause_req) goto clean; IExec->CopyMem( timer_req, pause_req, sizeof(struct TimeRequest) ); PLEASE do not do that. NEVER allocate any system structur...
- Wed Jun 18, 2014 2:14 pm
- Forum: General AmigaOS
- Topic: [SOLVED] OS freeze when using debug kernel with CPU Watcher
- Replies: 14
- Views: 8170
Re: OS freeze when using debug kernel with CPU Watcher
Seems Guillaume solved by adding 'Delay(1)' before 'FindTask(NULL)', maybe some kind of timing race condition on X1000 systems? I doubt that this would only exhibit in such rare cases. Besides, the Delay probably just makes it gloss over the freed memory. Just to make sure, you are NOT using an X-k...
- Wed Jun 18, 2014 2:03 pm
- Forum: General AmigaOS
- Topic: [SOLVED] OS freeze when using debug kernel with CPU Watcher
- Replies: 14
- Views: 8170
Re: OS freeze when using debug kernel with CPU Watcher
Thank you for your reply, yes, but why does it works on a non debug kernel and, overall, why does it seems to work on a SAM460 with the debug kernel ? The non-debug kernel does not munge memory, and it does not destroy linkage in removed list nodes. The debug kernel does, for the exact purpose of e...