sb-concurrency: frlocks
[sbcl.git] / contrib / sb-concurrency / package.lisp
index a9124b6..942ce61 100644 (file)
@@ -1,5 +1,16 @@
+;;;; -*-  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.
+
 (defpackage :sb-concurrency
-  (:use :cl :sb-thread)
+  (:use :cl :sb-thread :sb-int :sb-ext :sb-sys)
   (:export
    ;; MAILBOX
    "LIST-MAILBOX-MESSAGES"
    "QUEUE-EMPTY-P"
    "QUEUE-NAME"
    "QUEUEP"
+
+   ;; GATE
+   "CLOSE-GATE"
+   "GATE"
+   "GATE-NAME"
+   "GATE-OPEN-P"
+   "GATEP"
+   "MAKE-GATE"
+   "OPEN-GATE"
+   "WAIT-ON-GATE"
+
+   ;; FRLOCK
+   "MAKE-FRLOCK"
+   "FRLOCK"
+   "FRLOCK-NAME"
+   "FRLOCK-WRITE"
+   "FRLOCK-READ"
+   "FRLOCK-READ-BEGIN"
+   "FRLOCK-READ-END"
+   "GRAB-FRLOCK-WRITE-LOCK"
+   "RELEASE-FRLOCK-WRITE-LOCK"
    ))
\ No newline at end of file