Fix make-array transforms.
[sbcl.git] / contrib / sb-queue / package.lisp
1 ;;;; This software is part of the SBCL system. See the README file for
2 ;;;; more information.
3 ;;;;
4 ;;;; This software is derived from the CMU CL system, which was written at
5 ;;;; Carnegie Mellon University and released into the public domain. The
6 ;;;; software is in the public domain and is provided with absolutely no
7 ;;;; warranty. See the COPYING and CREDITS files for more information.
8
9 ;;; SB-QUEUE has been slurped in SB-CONCURRENCY.
10
11 ;;; Here we just provide a reexporting stub for backwards
12 ;;; compatibility.
13
14 (defpackage :sb-queue
15   (:use :cl :sb-concurrency)
16   (:export
17    "DEQUEUE"
18    "ENQUEUE"
19    "LIST-QUEUE-CONTENTS"
20    "MAKE-QUEUE"
21    "QUEUE"
22    "QUEUE-COUNT"
23    "QUEUE-EMPTY-P"
24    "QUEUE-NAME"
25    "QUEUEP"))