Changed stat() interface
authorceriel <none@none>
Thu, 28 Feb 1991 16:47:45 +0000 (16:47 +0000)
committerceriel <none@none>
Thu, 28 Feb 1991 16:47:45 +0000 (16:47 +0000)
mach/sun3/libsys/LIST
mach/sun3/libsys/__statcvt.s [new file with mode: 0644]
mach/sun3/libsys/_fstat.s [new file with mode: 0644]
mach/sun3/libsys/fstat.s
mach/sun3/libsys/lstat.s
mach/sun3/libsys/stat.s

index 5b98dc0..bd9c84e 100644 (file)
@@ -36,9 +36,8 @@ fcntl.s
 flock.s
 fork.s
 _fork.s
-Xstat.c
-_Xstat.c
 fstat.s
+_fstat.s
 fstatfs.s
 fsync.s
 ftime.c
@@ -192,3 +191,4 @@ uname.c
 vadvise.s
 vfork.s
 wait3.s
+__statcvt.s
diff --git a/mach/sun3/libsys/__statcvt.s b/mach/sun3/libsys/__statcvt.s
new file mode 100644 (file)
index 0000000..4c5df3c
--- /dev/null
@@ -0,0 +1,27 @@
+.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
+.define ___statcvt
+___statcvt:
+move.l (4,sp),a0
+lea (60,a0),a0
+lea (4,a0),a1
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.w -(a0),-(a1)
+clr.w -(a1)
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.l -(a0),-(a1)
+move.w -(a0),-(a1)
+clr.w -(a1)
+move.w -(a0),-(a1)
+clr.l d0
+rts
diff --git a/mach/sun3/libsys/_fstat.s b/mach/sun3/libsys/_fstat.s
new file mode 100644 (file)
index 0000000..ccd0476
--- /dev/null
@@ -0,0 +1,7 @@
+#include "syscall.h"
+.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
+.define __fstat
+__fstat: pea (SYS_fstat); trap #0; bcc 1f; jmp (cerror)
+1:
+       move.l  (sp)+,(sp)
+       jmp     (___statcvt)
index 78bae40..15bc3e4 100644 (file)
@@ -1,4 +1,4 @@
 #include "syscall.h"
 .sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
-.define ___fstat
-___fstat: SYSTEM(SYS_fstat)
+.define _fstat
+_fstat: jmp (__fstat)
index ccf8a69..8d5ca67 100644 (file)
@@ -1,4 +1,7 @@
 #include "syscall.h"
 .sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
-.define __lstat
-__lstat: SYSTEM(SYS_lstat)
+.define _lstat
+_lstat: pea (SYS_lstat); trap #0; bcc 1f; jmp (cerror)
+1:
+       move.l  (sp)+,(sp)
+       jmp     (___statcvt)
index b953f55..a5da95e 100644 (file)
@@ -1,4 +1,7 @@
 #include "syscall.h"
 .sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
-.define __stat
-__stat: SYSTEM(SYS_stat)
+.define _stat
+_stat: pea (SYS_stat); trap #0; bcc 1f; jmp (cerror)
+1:
+       move.l  (sp)+,(sp)
+       jmp     (___statcvt)