]> git.saurik.com Git - apple/libc.git/blobdiff - x86_64/sys/i386_gettimeofday.s
Libc-583.tar.gz
[apple/libc.git] / x86_64 / sys / i386_gettimeofday.s
index 678ebf9b0fbe8b5a0cb4efcfa4383ec373f999a0..8865b8737abfecc50d2507a80e412ece17a0f26e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999-2005 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 1999-2006 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
@@ -22,7 +22,7 @@
  */
 /* Copyright 1998 Apple Computer, Inc. */
 
-#include <SYS.h>
+#include <architecture/i386/asm_help.h>
 
 #define        __APPLE_API_PRIVATE
 #include <machine/cpu_capabilities.h>
 LABEL(___commpage_gettimeofday)
        movq    $(_COMM_PAGE_GETTIMEOFDAY),%rax
        jmp             *%rax
-
-/*
- *     This syscall is special cased: the timeval is returned in rax:rdx.
- */
-LABEL(___gettimeofday)
-    UNIX_SYSCALL_NONAME(gettimeofday,0)
-    movq       %rax, (%rdi)
-    movl       %edx, 8(%rdi)
-    xorl       %eax, %eax
-       ret