From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,4cf1fd41f64f8f02 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.sun.com!news.sun.com.POSTED!not-for-mail NNTP-Posting-Date: Tue, 06 Jun 2006 06:10:34 -0500 Newsgroups: comp.lang.ada Subject: Re: task-safe hash table? References: <1149544635.972350.169450@h76g2000cwa.googlegroups.com> From: Ole-Hjalmar Kristensen Organization: Sun Microsystems Date: 06 Jun 2006 13:10:31 +0200 Message-ID: User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cache-Post-Path: news1nwk!unknown@techra25.norway.sun.com X-Cache: nntpcache 3.0.1 (see http://www.nntpcache.org/) NNTP-Posting-Host: 192.18.43.249 X-Trace: sv3-epNUR4U2SJiLrZ7cconQ/p0/8avtyoXsYxfiMfulNzfoEZcE8ZifsNc1ChK+/7C6iWTsTnEhz9nYKi5!XIjnY5zBzXVVPHDIyTmmgvmrE83OL50V4SusXt0eQNfzglPyn6lnYvDGv+AvFXCS6bCrIXqssYiF!1g== X-Complaints-To: abuse@sun.com X-DMCA-Complaints-To: abuse@sun.com X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news2.google.com comp.lang.ada:4694 Date: 2006-06-06T13:10:31+02:00 List-Id: More or less the same pattern on my system: ~/ada/div-ada> uname -a SunOS techra25 5.9 Generic_118558-08 sun4u sparc SUNW,Sun-Fire-V210 ~/ada/div-ada> gnatmake -s tmoran gcc -c tmoran.adb gnatbind -x tmoran.ali gnatlink tmoran.ali ./tmoran a 0.111000000 mics b 0.108000000 mics c 0.112000000 mics prot.a 1.696000000 mics prot.b 1.202000000 mics prot.c 0.589000000 mics a 0.106000000 mics b 0.107000000 mics c 0.111000000 mics prot.a 1.325000000 mics prot.b 1.209000000 mics prot.c 0.596000000 mics ~/ada/div-ada> gnatmake -s -O2 tmoran gcc -c -O2 tmoran.adb gnatbind -x tmoran.ali gnatlink tmoran.ali ./tmoran a 0.096000000 mics b 0.090000000 mics c 0.091000000 mics prot.a 1.461000000 mics prot.b 1.148000000 mics prot.c 0.498000000 mics a 0.090000000 mics b 0.089000000 mics c 0.091000000 mics prot.a 1.313000000 mics prot.b 1.140000000 mics prot.c 0.498000000 mics ~/ada/div-ada> gnatmake -s -O3 tmoran gcc -c -O3 tmoran.adb gnatbind -x tmoran.ali gnatlink tmoran.ali ~/ada/div-ada> ./tmoran a 0.089000000 mics b 0.084000000 mics c 0.003000000 mics prot.a 1.282000000 mics prot.b 0.969000000 mics prot.c 0.485000000 mics a 0.085000000 mics b 0.084000000 mics c 0.004000000 mics prot.a 1.273000000 mics prot.b 0.967000000 mics prot.c 0.484000000 mics -- C++: The power, elegance and simplicity of a hand grenade.