Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hugo Ishimaru
asdf
Commits
ae23e5b1
Commit
ae23e5b1
authored
11 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
More GCL fixes: don't try overly big random numbers in WITH-TEMPORARY-FILE.
Get backtraces on GCL.
parent
9beaabb5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
uiop/image.lisp
+3
-0
3 additions, 0 deletions
uiop/image.lisp
uiop/stream.lisp
+1
-1
1 addition, 1 deletion
uiop/stream.lisp
with
4 additions
and
1 deletion
uiop/image.lisp
+
3
−
0
View file @
ae23e5b1
...
@@ -122,6 +122,9 @@ This is designed to abstract away the implementation specific quit forms."
...
@@ -122,6 +122,9 @@ This is designed to abstract away the implementation specific quit forms."
:collect
(
list
(
si::ihs-fun
ihs
)
:collect
(
list
(
si::ihs-fun
ihs
)
(
si::ihs-env
ihs
)))))
(
si::ihs-env
ihs
)))))
(
dolist
(
frame
(
nreverse
backtrace
))
(
writeln
frame
:stream
stream
)))
(
dolist
(
frame
(
nreverse
backtrace
))
(
writeln
frame
:stream
stream
)))
#+
gcl
(
let
((
*debug-io*
stream
))
(
system::simple-backtrace
))
#+
lispworks
#+
lispworks
(
let
((
dbg::*debugger-stack*
(
let
((
dbg::*debugger-stack*
(
dbg::grab-stack
nil
:how-many
(
or
count
most-positive-fixnum
)))
(
dbg::grab-stack
nil
:how-many
(
or
count
most-positive-fixnum
)))
...
...
This diff is collapsed.
Click to expand it.
uiop/stream.lisp
+
1
−
1
View file @
ae23e5b1
...
@@ -557,7 +557,7 @@ Finally, the file will be deleted, unless the KEEP argument when CALL-FUNCTION'e
...
@@ -557,7 +557,7 @@ Finally, the file will be deleted, unless the KEEP argument when CALL-FUNCTION'e
:with
prefix
=
(
namestring
(
ensure-absolute-pathname
(
or
prefix
"tmp"
)
:with
prefix
=
(
namestring
(
ensure-absolute-pathname
(
or
prefix
"tmp"
)
(
or
directory
#'
temporary-directory
)))
(
or
directory
#'
temporary-directory
)))
:with
results
=
()
:with
results
=
()
:for
counter
:from
(
random
(
expt
36
8
))
:for
counter
:from
(
random
(
expt
36
#-
gcl
8
#+
gcl
6
))
:for
pathname
=
(
pathname
(
format
nil
"~A~36R~@[~A~]~@[.~A~]"
prefix
counter
suffix
type
))
:for
pathname
=
(
pathname
(
format
nil
"~A~36R~@[~A~]~@[.~A~]"
prefix
counter
suffix
type
))
:for
okp
=
nil
:do
:for
okp
=
nil
:do
;; TODO: on Unix, do something about umask
;; TODO: on Unix, do something about umask
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment