factor/extra/unix/system-call/system-call.factor

16 lines
396 B
Factor
Raw Normal View History

2008-05-10 06:40:00 -04:00
USING: kernel continuations sequences math accessors inference macros
2008-05-10 07:14:08 -04:00
fry arrays.lib unix.ffi ;
2008-05-10 06:40:00 -04:00
IN: unix.system-call
ERROR: unix-system-call-error word args message ;
MACRO: unix-system-call ( quot -- )
2008-05-10 10:10:16 -04:00
[ ] [ infer in>> ] [ first ] tri
'[
[ @ dup 0 < [ dup throw ] [ ] if ]
[ drop , narray , swap err_no strerror unix-system-call-error ]
recover
] ;