diff options
Diffstat (limited to 'lib/libc/amd64/sys/pipe.S')
-rw-r--r-- | lib/libc/amd64/sys/pipe.S | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/libc/amd64/sys/pipe.S b/lib/libc/amd64/sys/pipe.S index 0dcf857..d52b189 100644 --- a/lib/libc/amd64/sys/pipe.S +++ b/lib/libc/amd64/sys/pipe.S @@ -33,21 +33,17 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pipe.S,v 1.3 1996/01/22 00:00:58 julian Exp $ + * $Id: pipe.S,v 1.4 1996/05/05 07:56:13 peter Exp $ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$Id: pipe.S,v 1.3 1996/01/22 00:00:58 julian Exp $" + .asciz "$Id: pipe.S,v 1.4 1996/05/05 07:56:13 peter Exp $" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" -#ifdef _THREAD_SAFE -PSYSCALL(pipe,_thread_sys_pipe) -#else -SYSCALL(pipe) -#endif +PSYSCALL(pipe) movl 4(%esp),%ecx movl %eax,(%ecx) movl %edx,4(%ecx) |