From 7f371592aa68d0b21544a013bfcde79fe6617eea Mon Sep 17 00:00:00 2001 From: Kevin Rosenberg Date: Thu, 27 Nov 2003 08:46:22 +0000 Subject: [PATCH] 0.8.6.6: * Add two missing functions from 0.8.6.5 --- src/code/target-unithread.lisp | 5 +++-- version.lisp-expr | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/code/target-unithread.lisp b/src/code/target-unithread.lisp index fde8f13d2..b8ae72f44 100644 --- a/src/code/target-unithread.lisp +++ b/src/code/target-unithread.lisp @@ -102,7 +102,7 @@ `(progn ,@body)))) ;;; what's the best thing to do with these on unithread? -#+NIl +#+nil (defun condition-wait (queue lock) "Atomically release LOCK and enqueue ourselves on QUEUE. Another thread may subsequently notify us using CONDITION-NOTIFY, at which @@ -121,10 +121,11 @@ time we reacquire LOCK and return to the caller." "Notify one of the processes waiting on QUEUE" (signal-queue-head queue)) +(defun maybe-install-futex-functions () nil) ;;;; job control +(defun init-job-control () t) (defun debugger-wait-until-foreground-thread (stream) t) (defun get-foreground () t) (defun release-foreground (&optional next) t) - diff --git a/version.lisp-expr b/version.lisp-expr index 7360bd38d..62d764225 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".) -"0.8.6.5" +"0.8.6.6" -- 2.11.4.GIT