From 63ca4b5c0e9e6e07d04f95613d37cfed953b2d08 Mon Sep 17 00:00:00 2001
From: pw <pw>
Date: Wed, 15 Nov 2000 11:42:58 +0000
Subject: [PATCH] Tailor the stack trace ambiguity code in x86-call-context a
 bit for FreeBSD4.

---
 code/debug-int.lisp | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/code/debug-int.lisp b/code/debug-int.lisp
index 602ffec36..e49dfe397 100644
--- a/code/debug-int.lisp
+++ b/code/debug-int.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-int.lisp,v 1.98 2000/11/06 18:08:16 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-int.lisp,v 1.99 2000/11/15 11:42:58 pw Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -947,10 +947,15 @@
 						   :depth (1+ depth)))
 		   (c-path-fp (x86-call-context c-ocfp :depth (1+ depth))))
 	       (cond ((and lisp-path-fp c-path-fp)
-		      ;; Both still seem valid - choose the lisp fram.
+		      ;; Both still seem valid - choose the lisp frame.
 		      (when (zerop depth)
 			(format t "Debug: Both still valid ~s ~s ~s ~s~%"
 				lisp-ocfp lisp-ra c-ocfp c-ra))
+		      #+FreeBSD4
+		      (if (sap> lisp-ocfp c-ocfp)
+			  (values lisp-ra lisp-ocfp)
+			  (values c-ra c-ocfp))
+		      #-FreeBSD4
 		      (values lisp-ra lisp-ocfp))
 		     (lisp-path-fp
 		      ;; The lisp convention is looking good.
-- 
GitLab