#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/option.scm,v 14.6 1989/11/09 03:44:56 gjs Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/option.scm,v 14.7 1990/02/10 23:45:01 cph Exp $
-Copyright (c) 1988, 1989 Massachusetts Institute of Technology
+Copyright (c) 1988, 1989, 1990 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
(define options
'((ARITHMETIC-INTERFACE ((RUNTIME NUMBER INTERFACE) #F "numint"))
(FORMAT ((RUNTIME FORMAT) (INITIALIZE-PACKAGE!) "format"))
- (STARBASE ((RUNTIME OLD-STARBASE-GRAPHICS) (INITIALIZE-PACKAGE!) "Sgraph"))
- ))
\ No newline at end of file
+ (HASH-TABLE ((RUNTIME HASH-TABLE) (INITIALIZE-PACKAGE!) "hashtb"))))
\ No newline at end of file
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.60 1990/02/09 19:11:24 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.61 1990/02/10 23:45:06 cph Exp $
Copyright (c) 1988, 1989, 1990 Massachusetts Institute of Technology
valid-hash-number?)
(initialization (initialize-package!)))
+(define-package (runtime hash-table)
+ (file-case options
+ ((load) "hashtb")
+ (else))
+ (parent ())
+ (export ()
+ hash-table/clean!
+ hash-table/clear!
+ hash-table/constructor
+ hash-table/count
+ hash-table/entries-list
+ hash-table/entries-vector
+ hash-table/entry-key
+ hash-table/entry-value
+ hash-table/for-each
+ hash-table/get
+ hash-table/key-hash
+ hash-table/key=?
+ hash-table/lookup
+ hash-table/make-entry
+ hash-table/put!
+ hash-table/rehash-size
+ hash-table/rehash-threshold
+ hash-table/remove!
+ hash-table/set-entry-value!
+ hash-table/size
+ hash-table?
+ make-object-hash-table
+ make-string-hash-table
+ make-symbol-hash-table
+ set-hash-table/rehash-size!
+ set-hash-table/rehash-threshold!)
+ (initialization (initialize-package!)))
+
(define-package (runtime history)
(files "histry")
(parent ())
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.74 1990/02/07 23:26:29 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.75 1990/02/10 23:45:11 cph Exp $
Copyright (c) 1988, 1989, 1990 Massachusetts Institute of Technology
'()))
(add-system! microcode-system)
(add-event-receiver! event:after-restore snarf-microcode-version!)
- (add-identification! "Runtime" 14 74))
+ (add-identification! "Runtime" 14 75))
(define microcode-system)
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.60 1990/02/09 19:11:24 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.61 1990/02/10 23:45:06 cph Exp $
Copyright (c) 1988, 1989, 1990 Massachusetts Institute of Technology
valid-hash-number?)
(initialization (initialize-package!)))
+(define-package (runtime hash-table)
+ (file-case options
+ ((load) "hashtb")
+ (else))
+ (parent ())
+ (export ()
+ hash-table/clean!
+ hash-table/clear!
+ hash-table/constructor
+ hash-table/count
+ hash-table/entries-list
+ hash-table/entries-vector
+ hash-table/entry-key
+ hash-table/entry-value
+ hash-table/for-each
+ hash-table/get
+ hash-table/key-hash
+ hash-table/key=?
+ hash-table/lookup
+ hash-table/make-entry
+ hash-table/put!
+ hash-table/rehash-size
+ hash-table/rehash-threshold
+ hash-table/remove!
+ hash-table/set-entry-value!
+ hash-table/size
+ hash-table?
+ make-object-hash-table
+ make-string-hash-table
+ make-symbol-hash-table
+ set-hash-table/rehash-size!
+ set-hash-table/rehash-threshold!)
+ (initialization (initialize-package!)))
+
(define-package (runtime history)
(files "histry")
(parent ())