Move pools -> memory.pools

db4
Joe Groff 2009-08-10 16:18:43 -04:00
parent 7243d097cb
commit a54f893565
5 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
! (c)2009 Joe Groff bsd license
USING: classes help.markup help.syntax kernel math ;
IN: pools
IN: memory.pools
HELP: <pool>
{ $values
@ -66,11 +66,11 @@ HELP: set-class-pool
}
{ $description "Associates a " { $link pool } " with " { $snippet "class" } "." } ;
ARTICLE: "pools" "Pools"
"The " { $vocab-link "pools" } " vocabulary provides " { $link pool } " objects which manage preallocated collections of objects."
ARTICLE: "memory.pools" "Pools"
"The " { $vocab-link "memory.pools" } " vocabulary provides " { $link pool } " objects which manage preallocated collections of objects."
{ $subsection pool }
{ $subsection POSTPONE: POOL: }
{ $subsection new-from-pool }
{ $subsection free-to-pool } ;
ABOUT: "pools"
ABOUT: "memory.pools"

View File

@ -1,6 +1,6 @@
! (c)2009 Joe Groff bsd license
USING: kernel pools tools.test ;
IN: pools.tests
USING: kernel memory.pools tools.test ;
IN: memory.pools.tests
TUPLE: foo x ;

View File

@ -2,7 +2,7 @@
USING: accessors arrays bit-arrays classes
classes.tuple.private fry kernel locals parser
sequences sequences.private vectors words ;
IN: pools
IN: memory.pools
TUPLE: pool
prototype