summaryrefslogtreecommitdiffstats
path: root/usr/klibc/arch/sparc64/sysstub.ph
blob: deeb88ce07b2fe7fc463c919fc5d86acf094c665 (plain)
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
# -*- perl -*-
#
# arch/sparc64/sysstub.ph
#
# Script to generate system call stubs
#

sub make_sysstub($$$$$@) {
    my($outputdir, $fname, $type, $sname, $stype, @args) = @_;

    $stype = $stype || 'common';

    open(OUT, '>', "${outputdir}/${fname}.S");
    print OUT "#include <asm/unistd.h>\n";
    print OUT "\n";
    print OUT "\t.type ${fname},\@function\n";
    print OUT "\t.globl ${fname}\n";
    print OUT "${fname}:\n";
    print OUT "\tb __syscall_${stype}\n";
    print OUT "\t  mov\t__NR_${sname}, %g1\n";
    print OUT "\t.size ${fname},.-${fname}\n";
    close(OUT);
}

1;