Related articles |
---|
OpenMP and parallel programming languages neal.wang@gmail.com (2004-10-09) |
Re: OpenMP and parallel programming languages dido@imperium.ph (Rafael 'Dido' Sevilla) (2004-10-12) |
Re: OpenMP and parallel programming languages Juergen.Kahrs@vr-web.de (=?ISO-8859-1?Q?J=FCrgen_Kahrs?=) (2004-10-12) |
Re: OpenMP and parallel programming languages beliavsky@aol.com (2004-10-12) |
Re: OpenMP and parallel programming languages smidkiff@purdue.edu (2004-10-12) |
Re: OpenMP and parallel programming languages mailbox@dmitry-kazakov.de (Dmitry A. Kazakov) (2004-10-17) |
Re: OpenMP and parallel programming languages m.a.ellis@ncl.ac.uk (Martin Ellis) (2004-10-17) |
Re: OpenMP and parallel programming languages gmt@CS.Arizona.EDU (2004-10-17) |
Re: OpenMP and parallel programming languages alexc@TheWorld.com (Alex Colvin) (2004-10-17) |
Re: OpenMP and parallel programming languages rbates@southwind.net (Rodney M. Bates) (2004-10-17) |
Re: OpenMP and parallel programming languages cyberlync@gmail.com (cyberlync@gmail.com) (2004-10-17) |
Re: OpenMP and parallel programming languages victor@eijkhout.net (2004-10-17) |
[2 later articles] |
From: | "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> |
Newsgroups: | comp.compilers |
Date: | 17 Oct 2004 16:03:26 -0400 |
Organization: | Compilers Central |
References: | 04-10-073 |
Keywords: | parallel, Ada |
Posted-Date: | 17 Oct 2004 16:03:26 EDT |
On 9 Oct 2004 22:51:10 -0400, Neal Wang wrote:
> Does anyone know any explicit parellel programming languages?
Ada 95 has a developed parallel computing model:
- tasks represent scheduling items. They have rendezvous, which support
queuing, parameter passing and concurrent exception handling.
- protected objects provide passive shared ADT, with read-only (functions),
read-write (procedures) and queued (entries) ways of accessing its
internals.
- blocking requests can be requeued between entries of the protected
objects and tasks.
--
Regards,
Dmitry A. Kazakov
http://www.dmitry-kazakov.de
Return to the
comp.compilers page.
Search the
comp.compilers archives again.