patch-2.1.76 linux/include/asm-alpha/unistd.h
Next file: linux/include/asm-i386/bugs.h
Previous file: linux/fs/vfat/namei.c
Back to the patch index
Back to the overall index
- Lines: 38
- Date:
Mon Dec 22 09:58:21 1997
- Orig file:
v2.1.75/linux/include/asm-alpha/unistd.h
- Orig date:
Mon Dec 1 12:04:14 1997
diff -u --recursive --new-file v2.1.75/linux/include/asm-alpha/unistd.h linux/include/asm-alpha/unistd.h
@@ -386,6 +386,12 @@
return sys_close(fd);
}
+extern off_t sys_lseek(int, off_t, int);
+static inline off_t lseek(int fd, off_t off, int whense)
+{
+ return sys_lseek(fd, off, whense);
+}
+
extern int sys_exit(int);
static inline int _exit(int value)
{
@@ -406,22 +412,12 @@
return sys_read(fd, buf, nr);
}
-extern int do_execve(char *, char **, char **, struct pt_regs *);
-extern void ret_from_sys_call(void);
+extern int __kernel_execve(char *, char **, char **, struct pt_regs *);
static inline int execve(char * file, char ** argvp, char ** envp)
{
- int i;
struct pt_regs regs;
-
memset(®s, 0, sizeof(regs));
- i = do_execve(file, argvp, envp, ®s);
- if (!i) {
- __asm__ __volatile__("bis %0,%0,$30\n\t"
- "bis %1,%1,$26\n\t"
- "ret $31,($26),1\n\t"
- : :"r" (®s), "r" (ret_from_sys_call));
- }
- return -1;
+ return __kernel_execve(file, argvp, envp, ®s);
}
extern int sys_setsid(void);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov