From: Tobias C. Rittweiler Date: Tue, 30 Mar 2010 21:40:39 +0000 (+0000) Subject: 1.0.37.19: Forgot to add sb-queue/package.lisp in last commit. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=98b538e06db617049c57fbe69e9ddefa66aee985;p=sbcl.git 1.0.37.19: Forgot to add sb-queue/package.lisp in last commit. --- diff --git a/contrib/sb-queue/package.lisp b/contrib/sb-queue/package.lisp new file mode 100644 index 0000000..1710f06 --- /dev/null +++ b/contrib/sb-queue/package.lisp @@ -0,0 +1,25 @@ +;;;; 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")) \ No newline at end of file diff --git a/version.lisp-expr b/version.lisp-expr index a868992..cbdba5e 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.37.18" +"1.0.37.19"