Update of /cvsroot/sbcl/sbcl/contrib/sb-queue
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10263/contrib/sb-queue
Added Files:
package.lisp
Log Message:
1.0.37.19: Forgot to add sb-queue/package.lisp in last commit.
--- NEW FILE: package.lisp ---
;;;; This software is part of the SBCL system. See the README file for
;;;; more information.
;;;;
;;;; This software is derived from the CMU CL system, which was written at
;;;; Carnegie Mellon University and released into the public domain. The
;;;; software is in the public domain and is provided with absolutely no
;;;; warranty. See the COPYING and CREDITS files for more information.
;;; SB-QUEUE has been slurped in SB-CONCURRENCY.
;;; Here we just provide a reexporting stub for backwards
;;; compatibility.
(defpackage :sb-queue
(:use :cl :sb-concurrency)
(:export
"DEQUEUE"
"ENQUEUE"
"LIST-QUEUE-CONTENTS"
"MAKE-QUEUE"
"QUEUE"
"QUEUE-COUNT"
"QUEUE-EMPTY-P"
"QUEUE-NAME"
"QUEUEP"))
|