File: glue.c

package info (click to toggle)
scheme48 1.8%2Bdfsg-1%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 14,984 kB
file content (28 lines) | stat: -rw-r--r-- 571 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Phony versions of native-code helper routines for use on architectures for
 * which we have no native code.
 */

long
s48_call_native_procedure(long procedure, long arg_count)
{
  return 3;	/* indicates failure; see scheme/vm/interp/call.scm */
}

long
s48_invoke_native_continuation(long code_pointer, long protocol_skip)
{
  return 3;	/* indicates failure; see scheme/vm/interp/call.scm */
}

long
s48_jump_to_native_address(long address, long template)
{
  return 3;    /* indicates failure; see scheme/vm/interp/call.scm */
}

void
s48_init_asm_glue(void)
{
}