mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 10:40:45 -08:00
fix to make-hash-table*
This commit is contained in:
parent
bcbc7c46b8
commit
14f1c69009
2 changed files with 5 additions and 3 deletions
|
|
@ -66,10 +66,12 @@ script."
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
(defun make-hash-table* (&rest args)
|
(defun make-hash-table* (&rest args)
|
||||||
"Use concurrent hash tables"
|
"Use native concurrent hash tables"
|
||||||
|
;; This covers sbcl ecl mazzano lw and ccl.
|
||||||
|
;; (lw and ccl default hash is synchronized)
|
||||||
#+(or sbcl ecl mezzano)
|
#+(or sbcl ecl mezzano)
|
||||||
(apply #'make-hash-table :synchronized t args)
|
(apply #'make-hash-table :synchronized t args)
|
||||||
#-(or sbcl ecl mezzano) (make-hash-table))
|
#-(or sbcl ecl mezzano) (apply #'make-hash-table args))
|
||||||
|
|
||||||
(defvar *verbose-output* nil "Verbose server output (default false)")
|
(defvar *verbose-output* nil "Verbose server output (default false)")
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
;; (lw and ccl default hash is synchronized)
|
;; (lw and ccl default hash is synchronized)
|
||||||
#+(or sbcl ecl mezzano)
|
#+(or sbcl ecl mezzano)
|
||||||
(apply #'make-hash-table :synchronized t args)
|
(apply #'make-hash-table :synchronized t args)
|
||||||
#-(or sbcl ecl mezzano) (make-hash-table))
|
#-(or sbcl ecl mezzano) (apply #'make-hash-table args))
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; Implementation - clog-group
|
;; Implementation - clog-group
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue