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: a07f3367d7,ea10f5c50b86e0d8 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!u34g2000yqu.googlegroups.com!not-for-mail From: Michael R Newsgroups: comp.lang.ada Subject: Re: ANN: Simple components for Ada v3.8 Date: Fri, 9 Apr 2010 11:58:30 -0700 (PDT) Organization: http://groups.google.com Message-ID: <260b6bf8-6243-4d69-b4a5-13b63ee11947@u34g2000yqu.googlegroups.com> References: <3dxjzm5ksuat$.vti0u8q01m0a$.dlg@40tude.net> NNTP-Posting-Host: 208.91.1.8 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1270839511 16980 127.0.0.1 (9 Apr 2010 18:58:31 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 9 Apr 2010 18:58:31 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: u34g2000yqu.googlegroups.com; posting-host=208.91.1.8; posting-account=iokpWwkAAAC4FdoU8cY5F_WfowBALHIE User-Agent: G2/1.0 X-HTTP-Via: 1.1 techops-proxy1.eng.vmware.com:3128 (squid/2.5.STABLE6) X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTBDFff GTB7.0,gzip(gfe) Xref: g2news1.google.com comp.lang.ada:9952 Date: 2010-04-09T11:58:30-07:00 List-Id: On Apr 9, 9:14=A0am, "Dmitry A. Kazakov" wrote: > The current version provides implementations of smart pointers, sets, map= s, > directed graphs, directed weighted graphs, stacks, tables, string editing= , > unbounded arrays, expression analyzers, lock-free data structures, > synchronization primitives (events, race condition free pulse events, > arrays of events, reentrant mutexes, deadlock-free arrays of mutexes), > pseudo-random non-repeating numbers, symmetric encoding and decoding, IEE= E > 754 representations support; strings editing and tables management. > > =A0 =A0http://www.dmitry-kazakov.de/ada/components.htm > > This release provides a persistence layer backed by SQLite. As a by-produ= ct > it includes SQLite bindings. Differently to renown GNADE the bindings lin= k > the DB engine statically, which is probably the only case when one might > wish to use SQLite. > > Another enhancement is that the parser tools now support sources based on > Ada streams. The stream is read using Character'Read. User-defined > delimiters (like line ends) are supported. > > -- > Regards, > Dmitry A. Kazakovhttp://www.dmitry-kazakov.de Hi, In another thread, it was pointed out that the standard Ada.Containers types are not safe in a multi-tasking environment. Since you mention locking wrt your structures, I assume they are safe in a multi-tasking env? Take care, Michael.