sb-concurrency: frlocks
[sbcl.git] / contrib / sb-concurrency / package.lisp
index 7e6c6bd..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 :sb-int)
+  (:use :cl :sb-thread :sb-int :sb-ext :sb-sys)
   (:export
    ;; MAILBOX
    "LIST-MAILBOX-MESSAGES"
    "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