summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/i386/unified.S
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-01-04 20:04:45 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-01-04 20:04:45 +0000
commit02fec4701cee79f875c1d02b8b4aee09380dbcb8 (patch)
treef4f291aedbb2e60ee58351481858a8cd3ec80b6b /mdk-stage1/dietlibc/i386/unified.S
parent9887fe04751edf39e8389f2c3ec3f020b5e1c17d (diff)
downloaddrakx-backup-do-not-use-02fec4701cee79f875c1d02b8b4aee09380dbcb8.tar
drakx-backup-do-not-use-02fec4701cee79f875c1d02b8b4aee09380dbcb8.tar.gz
drakx-backup-do-not-use-02fec4701cee79f875c1d02b8b4aee09380dbcb8.tar.bz2
drakx-backup-do-not-use-02fec4701cee79f875c1d02b8b4aee09380dbcb8.tar.xz
drakx-backup-do-not-use-02fec4701cee79f875c1d02b8b4aee09380dbcb8.zip
integrate dietlibc/stdio per default for cdrom and disk only installs
Diffstat (limited to 'mdk-stage1/dietlibc/i386/unified.S')
-rw-r--r--mdk-stage1/dietlibc/i386/unified.S33
1 files changed, 33 insertions, 0 deletions
diff --git a/mdk-stage1/dietlibc/i386/unified.S b/mdk-stage1/dietlibc/i386/unified.S
new file mode 100644
index 000000000..c3cd11001
--- /dev/null
+++ b/mdk-stage1/dietlibc/i386/unified.S
@@ -0,0 +1,33 @@
+#include <dietfeatures.h>
+
+.text
+.global __unified_syscall
+__unified_syscall:
+ and $0xff,%eax
+ push %edi
+ push %esi
+ push %ebx
+ movl 0x10(%esp),%ebx
+ movl 0x14(%esp),%ecx
+ movl 0x18(%esp),%edx
+ movl 0x1c(%esp),%edi
+ movl 0x20(%esp),%esi
+ int $0x80
+ cmp $-124,%eax
+ jbe .Lnoerror
+#ifdef WANT_THREAD_SAVE
+ movl %eax,%ebx
+ call __errno_location
+ neg %ebx
+ movl %ebx,(%eax)
+#else
+ neg %eax
+ mov %eax,errno
+#endif
+ xor %eax,%eax
+ dec %eax
+.Lnoerror:
+ pop %ebx
+ pop %esi
+ pop %edi
+ ret