Displaying 4 results from an estimated 4 matches for "ta7".
Did you mean:
t7
2011 Jan 20
4
How to reshape wide format data.frame to long format?
...[6] "AMR.pa5.M" "AMR.pa6.M" "AMR.pa7.M" "AMR.pa8.M" "AMR.pa9.M"
[11] "AMR.pa10.M" "AMR.ta1.M" "AMR.ta2.M" "AMR.ta3.M" "AMR.ta4.M"
[16] "AMR.ta5.M" "AMR.ta6.M" "AMR.ta7.M" "AMR.ta8.M" "AMR.ta9.M"
[21] "AMR.ta10.M" "AMR.ka1.M" "AMR.ka2.M" "AMR.ka3.M" "AMR.ka4.M"
[26] "AMR.ka5.M" "AMR.ka6.M" "AMR.ka7.M" "AMR.ka8.M" "AMR.ka9.M"
[31] &q...
2018 Jul 17
1
[PATCH klibc 1/2] rename, renameat: Use renameat2() system call
New architectures only define the renameat2() system call, which was
added in Linux 3.15. Define rename() and renameat() as wrappers for
it if necessary.
Signed-off-by: Ben Hutchings <ben at decadent.org.uk>
---
--- a/usr/klibc/Kbuild
+++ b/usr/klibc/Kbuild
@@ -59,7 +59,8 @@ klib-y += vsnprintf.o snprintf.o vsprint
inet/inet_ntoa.o inet/inet_aton.o inet/inet_addr.o \
2023 Mar 05
0
[klibc:master] Add LoongArch64 port
...sub make_sysstub($$$$$@) {
my($outputdir, $fname, $type, $sname, $stype, @args) = @_;
@@ -17,8 +17,8 @@ sub make_sysstub($$$$$@) {
print OUT "#include <asm/unistd.h>\n";
print OUT "\n";
print OUT "ENTRY(${fname})\n";
- print OUT "\tli\ta7, __NR_${sname}\n";
- print OUT "\tj\t__syscall_${stype}\n";
+ print OUT "\tli.w\t\$a7, __NR_${sname}\n";
+ print OUT "\tb\t__syscall_${stype}\n";
print OUT "END(${fname})\n";
close(OUT);
}
2019 Jan 18
0
[klibc:master] Add RISC-V (RV64) port
...>\n";
print OUT "#include <asm/unistd.h>\n";
print OUT "\n";
- print OUT "\t.set noreorder\n";
- print OUT "\n";
- print OUT "LEAF(${fname})\n";
+ print OUT "ENTRY(${fname})\n";
+ print OUT "\tli\ta7, __NR_${sname}\n";
print OUT "\tj\t__syscall_${stype}\n";
- print OUT "\t li\tv0, __NR_${sname}\n";
- print OUT "\tEND(${fname})\n";
+ print OUT "END(${fname})\n";
close(OUT);
}