Poster | Thread |
umisef
| |
Re: OS 4.0 hard hitting question rant??? Posted on 24-Oct-2007 13:38:56
| | [ #61 ] |
|
|
|
Super Member |
Joined: 19-Jun-2005 Posts: 1714
From: Melbourne, Australia | | |
|
| @NutsAboutAmiga
Quote:
-E argument seams to work whit GCC and C++ |
Yeah, it "works". It just doesn't produce object files :)
(-E means "run preprocessor only". Extremely useful to see what the damn thing is actually trying to compile, but useless for building object files).
Quote:
Most source codes compiled whit g++ will happy compile whit GCC |
That's because (a) C++ is almost a superset of C, (b) GCC *will* run the C++ compiler engine for anything called .C, .cc, .cpp, .CPP, .c++, .cp, or .cxx. If you use g++ instead, it wall *also* use the C++ compiler engine for straight .c files, but as long as you name things .cpp, there really is no difference. (The other difference is that when you use g++ for *linking*, it automatically links in the C++ library. gcc used for linking leaves it out).
|
|
Status: Offline |
|
|
AmiGame
| |
Re: OS 4.0 hard hitting question rant??? Posted on 24-Oct-2007 14:01:47
| | [ #62 ] |
|
|
|
Elite Member |
Joined: 23-Mar-2004 Posts: 3599
From: Peterborough, UK, Planet Earth (I think...) | | |
|
| @NutsAboutAmiga
Quote:
Well stop sitting in the corner and feel sorry for your self, go out have some fun, drink a bear. |
I'm not sure I would like to "drink" that bear !
JerryLast edited by AmiGame on 24-Oct-2007 at 02:05 PM.
_________________ - AOS has been ported to ex-86 ! It's called AROS and WinUAE... Or E-UAE on Linux !
- A1XE-G4 up and runing with: 512MB Ram / 200GB and 80GB HardDisks on Sii0680. AOS4 Final Update / AmiZilla 0.1 Alpha |
|
Status: Offline |
|
|
ChrisH
| |
Re: OS 4.0 hard hitting question rant??? Posted on 24-Oct-2007 16:28:16
| | [ #63 ] |
|
|
|
Elite Member |
Joined: 30-Jan-2005 Posts: 6679
From: Unknown | | |
|
| @Rogue who said Quote:
AmigaOS 4.0 uses free memory to cache disk access, although it is only used for SFS partitions |
That is just AWESOME _________________ Author of the PortablE programming language. It is pitch black. You are likely to be eaten by a grue... |
|
Status: Offline |
|
|
ChrisH
| |
Re: OS 4.0 hard hitting question rant??? Posted on 24-Oct-2007 16:31:42
| | [ #64 ] |
|
|
|
Elite Member |
Joined: 30-Jan-2005 Posts: 6679
From: Unknown | | |
|
| @umisef who said Quote:
Next you are going to tell me that OS4 also handles large files in the ram disk much better, right? (OS 3.9 was abysmal in that regard. Sure, nobody ever expected files of a few hundred MB in the ram disk, but still...) |
What's wrong with the way OS3 it does it? And yes, I have put several hundred MB files in the RAM disk before now too - and not merely to make WinUAE cry!_________________ Author of the PortablE programming language. It is pitch black. You are likely to be eaten by a grue... |
|
Status: Offline |
|
|
umisef
| |
Re: OS 4.0 hard hitting question rant??? Posted on 24-Oct-2007 16:57:23
| | [ #65 ] |
|
|
|
Super Member |
Joined: 19-Jun-2005 Posts: 1714
From: Melbourne, Australia | | |
|
| @ChrisH
Quote:
What's wrong with the way OS3 it does it? |
I do not recall precisely, but either reading or writing of large files got horrifically slow. It seemed like another instance where the early AmigaOS designers considered a linked list the be-all and end-all of data structures, and ended up walking the list more than they should. And a big file makes for a big list :)
I ran into this when I wanted to test network speed by transferring a large file. IIRC, back then, my disks weren't quite capable of keeping up with the network, so I thought I'd just use the ramdisk --- only to find that transfers were several times *slower* than with the real hard disk.
|
|
Status: Offline |
|
|
umisef
| |
Re: OS 4.0 hard hitting question rant??? Posted on 24-Oct-2007 17:04:40
| | [ #66 ] |
|
|
|
Super Member |
Joined: 19-Jun-2005 Posts: 1714
From: Melbourne, Australia | | |
|
| @AmiGame
Quote:
I'm not sure I would like to "drink" that bear ! |
Isn't drinking bears what you do *here*?
|
|
Status: Offline |
|
|
itix
| |
Re: OS 4.0 hard hitting question rant??? Posted on 24-Oct-2007 17:30:08
| | [ #67 ] |
|
|
|
Elite Member |
Joined: 22-Dec-2004 Posts: 3398
From: Freedom world | | |
|
| @umisef
Quote:
I ran into this when I wanted to test network speed by transferring a large file. IIRC, back then, my disks weren't quite capable of keeping up with the network, so I thought I'd just use the ramdisk --- only to find that transfers were several times *slower* than with the real hard disk.
|
But you can write to the hd using DMA while ramdisk store requires memcpy()...
_________________ Amiga Developer Amiga 500, Efika, Mac Mini and PowerBook |
|
Status: Offline |
|
|
umisef
| |
Re: OS 4.0 hard hitting question rant??? Posted on 25-Oct-2007 14:57:58
| | [ #68 ] |
|
|
|
Super Member |
Joined: 19-Jun-2005 Posts: 1714
From: Melbourne, Australia | | |
|
| @itix
Quote:
But you can write to the hd using DMA while ramdisk store requires memcpy()... |
Dirty little secret --- most HD reads and writes in an updated Amithlon system also need a memcpy, because the kernel's alignment requirements for disk buffers being written in "raw" mode are tougher than Amiga applications typically supply :) But of course, those are at least native memcpys.
Anyway, needing to actually copy the data could not explain more than a tiny portion of the slowdown. It was really mindblowingly slow, on a machine which was itself rather fast....
|
|
Status: Offline |
|
|
IOWASURFER
| |
PPC card outrageous Posted on 25-Oct-2007 16:39:48
| | [ #69 ] |
|
|
|
Regular Member |
Joined: 4-Sep-2007 Posts: 105
From: Dead Moines, Iowa | | |
|
| |
Status: Offline |
|
|
Snuffy
| |
Re: OS 4.0 hard hitting question rant??? Posted on 25-Oct-2007 16:50:39
| | [ #70 ] |
|
|
|
Super Member |
Joined: 25-Oct-2005 Posts: 1121
From: Michigan, USA | | |
|
| Hi @IOWASURFER #30 I guess I am upset that now that 4.0 maybe coming out..
Yes, I agree with you on this! Are there any hardware vendors that can meet the demand?
Last edited by Snuffy on 25-Oct-2007 at 05:05 PM.
_________________
|
|
Status: Offline |
|
|
Rogue
| |
Re: OS 4.0 hard hitting question rant??? Posted on 25-Oct-2007 18:07:00
| | [ #71 ] |
|
|
|
OS4 Core Developer |
Joined: 14-Jul-2003 Posts: 3999
From: Unknown | | |
|
| @umisef
Quote:
Next you are going to tell me that OS4 also handles large files in the ram disk much better, right? (OS 3.9 was abysmal in that regard. Sure, nobody ever expected files of a few hundred MB in the ram disk, but still...) |
Not sure what you mean.
The "file system" used in the RAM disk didn't change substantially. The performance is a good deal better because the memory pools now are about 20-30 times faster in the meantime.
I suppose that RAM-Handler suffers from the same issues as FFS with regards to large files._________________ Seriously, if you want to contact me do not bother sending me a PM here. Write me a mail |
|
Status: Offline |
|
|
shoe
| |
Re: OS 4.0 hard hitting question rant??? Posted on 25-Oct-2007 18:19:39
| | [ #72 ] |
|
|
|
Super Member |
Joined: 14-Sep-2003 Posts: 1585
From: Gothenburg, Sweden | | |
|
| @IOWASURFER
Sorry dude but that was one of the most pointless posts I've ever read (even more so that this one I am writing now )
What's your point exactly?
-shoe |
|
Status: Offline |
|
|
number6
| |
Re: OS 4.0 hard hitting question rant??? Posted on 25-Oct-2007 18:24:16
| | [ #73 ] |
|
|
|
Elite Member |
Joined: 25-Mar-2005 Posts: 11601
From: In the village | | |
|
| @shoe
Quote:
Sorry dude but that was one of the most pointless posts I've ever read (even more so that this one I am writing now) What's your point exactly? |
Long time no see shoe. Hi!
I think you are witnessing "variations on a theme" in many threads here and on amiga.org. The topic seems to be the desire for a new accelerator, plain and simple. The sub-topic discussed seems to be the legality of such a project.
Just my 2 cents.
#6
_________________ This posting, in its entirety, represents solely the perspective of the author. *Secrecy has served us so well* |
|
Status: Offline |
|
|
Ferry
| |
Re: PPC card outrageous Posted on 25-Oct-2007 18:38:59
| | [ #74 ] |
|
|
|
Cult Member |
Joined: 26-Aug-2003 Posts: 696
From: Valencia, Spain | | |
|
| @IOWASURFER
Huh? The item your link points to is priced $350 (barely EUR 250), not $750. BTW, fair price for that kind of HW, I think.
Saluditos,
Ferrán. _________________ Amiga user since 1988 AOS4 Betatester Member of ATO Spain A1 Cfg OS4 SCR A1200 |
|
Status: Offline |
|
|
IOWASURFER
| |
Re: PPC card outrageous Posted on 25-Oct-2007 19:47:36
| | [ #75 ] |
|
|
|
Regular Member |
Joined: 4-Sep-2007 Posts: 105
From: Dead Moines, Iowa | | |
|
| @Ferry
Oh you silly kitty thats because his buy it now price was 750$ but its now gone.. but be my guest Ferry and bid all you want :)
Last edited by IOWASURFER on 25-Oct-2007 at 08:32 PM.
_________________ Friends Do not let friends use IBM's.......
(2) TWIN Amiga 1200A 6804 1240 (1) Amiga 2000 GE-Force 6804 WB3.9 (6) Amiga 500 |
|
Status: Offline |
|
|
IOWASURFER
| |
Re: OS 4.0 hard hitting question rant??? Posted on 25-Oct-2007 19:49:36
| | [ #76 ] |
|
|
|
Regular Member |
Joined: 4-Sep-2007 Posts: 105
From: Dead Moines, Iowa | | |
|
| @shoe
The point would be hardly anyone can afford a ppc card and no one is making one and thats about as pointless as one can get ohhhhhhhhhh !!!
:) Last edited by IOWASURFER on 25-Oct-2007 at 07:52 PM.
_________________ Friends Do not let friends use IBM's.......
(2) TWIN Amiga 1200A 6804 1240 (1) Amiga 2000 GE-Force 6804 WB3.9 (6) Amiga 500 |
|
Status: Offline |
|
|