Added s48_raise_os_error_7.

This commit is contained in:
mainzelm 2002-01-10 10:06:33 +00:00
parent 4328a9047c
commit 978f8a71eb
1 changed files with 10 additions and 0 deletions

View File

@ -554,6 +554,16 @@ s48_raise_os_error_6(int the_errno, s48_value arg1, s48_value arg2,
arg1, arg2, arg3, arg4, arg5, arg6);
}
void
s48_raise_os_error_7(int the_errno, s48_value arg1, s48_value arg2,
s48_value arg3, s48_value arg4, s48_value arg5,
s48_value arg6, s48_value arg7) {
s48_raise_scheme_exception(S48_EXCEPTION_OS_ERROR, 9,
s48_enter_fixnum(the_errno),
s48_enter_string(strerror(the_errno)),
arg1, arg2, arg3, arg4, arg5, arg6, arg7);
}
void
s48_raise_string_os_error(char *reason) {
s48_raise_scheme_exception(S48_EXCEPTION_OS_ERROR, 1,