glue.c 726 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Part of Scheme 48 1.9. See file COPYING for notices and license.
  3. *
  4. * Authors: Richard Kelsey, Jonathan Rees, Martin Gasbichler, Mike Sperber
  5. */
  6. /*
  7. * Phony versions of native-code helper routines for use on architectures for
  8. * which we have no native code.
  9. */
  10. long
  11. s48_call_native_procedure(long procedure, long arg_count)
  12. {
  13. return 3; /* indicates failure; see scheme/vm/interp/call.scm */
  14. }
  15. long
  16. s48_invoke_native_continuation(long code_pointer, long protocol_skip)
  17. {
  18. return 3; /* indicates failure; see scheme/vm/interp/call.scm */
  19. }
  20. long
  21. s48_jump_to_native_address(long address, long template)
  22. {
  23. return 3; /* indicates failure; see scheme/vm/interp/call.scm */
  24. }
  25. void
  26. s48_init_asm_glue(void)
  27. {
  28. }