From 8389b4fedc2f9342fce38a55fef56f64b3f84ace Mon Sep 17 00:00:00 2001 From: slava Date: Thu, 7 Sep 2006 00:22:19 +0000 Subject: [PATCH] concurrency load fix --- TODO.FACTOR.txt | 1 - contrib/concurrency/load.factor | 15 +++++++++++---- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/TODO.FACTOR.txt b/TODO.FACTOR.txt index 35d03a2fe5..0f0f1d6dee 100644 --- a/TODO.FACTOR.txt +++ b/TODO.FACTOR.txt @@ -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 diff --git a/contrib/concurrency/load.factor b/contrib/concurrency/load.factor index ef79f37945..7925596177 100644 --- a/contrib/concurrency/load.factor +++ b/contrib/concurrency/load.factor @@ -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" +} ;