Skip to content

Commit a4af8a6

Browse files
committed
Initial commit.
0 parents  commit a4af8a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+4591
-0
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lefteris Chatzimparmpas <lefcha@fastmail.net>

LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2007-2011 Eleftherios Chatzimparmpas
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
all install uninstall clean:
2+
cd src && $(MAKE) $@

NEWS

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
ConcurrentLua 1.0.6 - 27 Feb 2011
2+
- Project moved to GitHub.
3+
- Updates to the documentation and other information files.
4+
5+
ConcurrentLua 1.0.5 - 9 Mar 2010
6+
- Bug fix; process name registrations in distributed mode sometimes not
7+
working.
8+
9+
ConcurrentLua 1.0.4 - 13 Feb 2010
10+
- Bug fix; cltime.time() problem affecting the scheduler in Mac OS X.
11+
12+
ConcurrentLua 1.0.3 - 23 May 2009
13+
- Bug fix; time calculation for the root process while sleeping was wrong.
14+
- Minor enhancements to the serializer in the handling of tables.
15+
16+
ConcurrentLua 1.0.2 - 21 Jun 2008
17+
- Minor enhancement to the serializer in the handling of strings.
18+
19+
ConcurrentLua 1.0.1 - 24 Mar 2008
20+
- Bug fix; cltime.time() overflow in 32-bit architectures caused problems to
21+
the scheduler.
22+
23+
ConcurrentLua 1.0 - 31 Dec 2007
24+
- Initial release.

README

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
ConcurrentLua
2+
3+
Description
4+
5+
ConcurrentLua is a system that implements a concurrency model for the Lua
6+
programming language. It is based on the share-nothing asynchronous
7+
message-passing model that is employed in the Erlang programming language.
8+
9+
ConcurrentLua extends Lua's coroutines with message-passing primitives, in
10+
order to support concurrent programming. Distributed programming is supported
11+
transparently with the same message-passing primitives.
12+
13+
ConcurrentLua is implemented as a collection of Lua modules that can be
14+
loaded by any Lua program. Most of the code is written in Lua itself, with
15+
minor parts written in C.
16+
17+
18+
Website
19+
20+
http://github.com/lefcha/concurrentlua
21+
22+
23+
Changes
24+
25+
All the changes in each new release up to the latest are in the NEWS file.
26+
27+
28+
Installation
29+
30+
The LuaSocket and Copas modules are runtime dependencies.
31+
32+
The new package system for Lua 5.1 is used and a makefile is supplied to
33+
build and install:
34+
35+
make all
36+
make install
37+
38+
39+
Documentation
40+
41+
The detailed reference manual can be found in doc/manual.html.
42+
43+
44+
License
45+
46+
Released under the terms and conditions of the MIT/X11 license, included in
47+
the LICENSE file.
48+
49+
50+
Authors
51+
52+
See AUTHORS file.

doc/concurrentlua.png

7.54 KB
Loading

0 commit comments

Comments
 (0)