Handbook
Glossary
unix-system-call-error ( args errno message word -- * )
Vocabulary
unix
Definition
IN:
unix
ERROR:
unix-system-call-error
args errno message word
;
Methods
USING:
accessors
debugger
io
kernel
prettyprint
unix
;
M:
unix-system-call-error
error.
"Unix system call '"
write
dup
word>>
pprint
"' failed:"
print
nl
dup
message>>
write
" ("
write
dup
errno>>
pprint
")"
print
nl
"It was called with the following arguments:"
print
nl
args>>
stack.
;