chiark / gitweb /
542ab5575c9638cb017b82cb6a688a42733ac35f
[elogind.git] / klibc / klibc / arch / ppc / sysstub.ph
1 # -*- perl -*-
2 #
3 # arch/ppc/sysstub.ph
4 #
5 # Script to generate system call stubs
6 #
7
8 sub make_sysstub($$$$@) {
9     my($fname, $type, $sname, $stype, @args) = @_;
10
11     open(OUT, '>', "syscalls/${fname}.S");
12     print OUT "#include <asm/unistd.h>\n";
13     print OUT "\n";
14     print OUT "\t.type ${fname},\@function\n";
15     print OUT "\t.globl ${fname}\n";
16     print OUT "${fname}:\n";
17     print OUT "\tli 0,__NR_${sname}\n";
18     print OUT "\tsc\n";
19     print OUT "\tbnslr\n";
20     print OUT "\tb __syscall_error\n";
21     print OUT "\t.size ${fname},.-${fname}\n";
22     close(OUT);
23 }
24
25 1;