Search found 159 matches
- Tue Feb 07, 2012 11:38 am
- Forum: General Developer Support
- Topic: How to create a USBsniffer ?
- Replies: 9
- Views: 5246
Re: How to create a USBsniffer ?
@tpascoal again don't expect any wonder from an USBSniffer on AmigaOS 4 (which I don't think we have) at least not for currently unsupported devices. As I said in my previous post from November: an USB device won't start sending the system any data until the system asked it to do so, this can * ONLY...
- Thu Jan 19, 2012 9:15 am
- Forum: General Developer Support
- Topic: OS4 equivalent for fib_NumBlocks
- Replies: 7
- Views: 4181
Re: OS4 equivalent for fib_NumBlocks
What would be interesting fro the user is to do what Windows does (Yes I really said that
by telling both the file size *and* the size the file actually occupies on the disk. This helps users understand why he's missing some space on his disk.
- Wed Jan 11, 2012 10:03 pm
- Forum: SDK Support
- Topic: Deprecation mentions in exec.doc
- Replies: 1
- Views: 3757
Deprecation mentions in exec.doc
The highlight of the depreciation state of a given function is not always very clear and sometimes hard to find in exec's autodoc. For example: AllocEntry (the way I prefer): clearly noted as deprecated in the first line of its associated documentation. There a big (-DEPRECATED-) at the end of the f...
- Tue Nov 29, 2011 12:29 pm
- Forum: Platform: AmigaOne 500 and Sam series
- Topic: Problems with a cold reboot
- Replies: 11
- Views: 10477
Re: Problems with a cold reboot
Excuse-me but i don't speak very well english and i use google translation for help me. I want say "warm" but google translation use the word cold for the french word "à froid". And he was right: "cold reboot" *is* the translation for French "reboot à froid"....
- Fri Nov 18, 2011 10:21 am
- Forum: General AmigaOS
- Topic: 4.1 Calculator cosmetic bug
- Replies: 3
- Views: 1875
Re: 4.1 Calculator cosmetic bug
Thanks to you to take the time to report your finding here. Your report was perfect: concise and documented. It took me only a few seconds to check.Steady wrote:Thanks Abalaban.
It seems you're all one step ahead.
- Thu Nov 17, 2011 11:33 am
- Forum: General Developer Support
- Topic: rror message or crashing on closing program
- Replies: 7
- Views: 4795
Re: rror message or crashing on closing program
@salass00
Thanks that's interesting to know.
Thanks that's interesting to know.
- Thu Nov 17, 2011 10:15 am
- Forum: General Developer Support
- Topic: rror message or crashing on closing program
- Replies: 7
- Views: 4795
Re: rror message or crashing on closing program
I think you are confusing things here because signals are still allocated and freed with AllocSignal()/FreeSignal() on AmigaOS4.x. Maybe you are thinking of message ports which used to be created with CreateMsgPort() or CreatePort() (amiga.lib KS1.x compatibility function) and deleted with DeleteMs...
- Thu Nov 17, 2011 9:16 am
- Forum: General Developer Support
- Topic: rror message or crashing on closing program
- Replies: 7
- Views: 4795
Re: rror message or crashing on closing program
A list of system error messages, with some explanation about them: possible or most probable cause, relation with language constructs, with parts of the system (library, kernel) here in this case : - what is a signal ? How does the OS uses it? - Why does the error message identifies the 'signal bit...
- Thu Nov 17, 2011 12:58 am
- Forum: General AmigaOS
- Topic: 4.1 Calculator cosmetic bug
- Replies: 3
- Views: 1875
Re: 4.1 Calculator cosmetic bug
In my beta Calculator it's not the case, the digit are correctly justified.
So it seems it has been fixed meanwhile.
So it seems it has been fixed meanwhile.
- Wed Nov 16, 2011 11:06 am
- Forum: General Developer Support
- Topic: rror message or crashing on closing program
- Replies: 7
- Views: 4795
Re: rror message or crashing on closing program
- what is the error message telling me? what can be the origin of such an error? The error message is telling you that your program exits but has not freed signal bit 20000000. It's either a signal you allocated by yourself directly or a signal allocated by an object that you forgot to dispose. It ...