concurrency load fix

slava 2006-09-07 00:22:19 +00:00
parent effe770df3
commit 8389b4fedc
2 changed files with 11 additions and 5 deletions

View File

@ -19,7 +19,6 @@
- better way of dealing with compiler errors
- track individual method usages
- track a list of assets loaded from each module's file
- do reload-modules in the right order
- variable width word wrap
- add-gadget, model-changed, set-model should compile
- graphical module manager tool

View File

@ -1,5 +1,12 @@
REQUIRES: dlists serialize match ;
! Copyright (C) 2005 Chris Double. All Rights Reserved.
! See http://factorcode.org/license.txt for BSD license.
!
REQUIRES: contrib/dlists contrib/serialize contrib/match ;
PROVIDE: concurrency
{ "concurrency.factor" }
{ "concurrency-examples.factor" "concurrency-tests.factor" } ;
PROVIDE: contrib/concurrency {
"concurrency.factor"
"concurrency.facts"
} {
"concurrency-examples.factor"
"concurrency-tests.factor"
} ;