]> git.saurik.com Git - apple/libc.git/blobdiff - ppc/sys/ppc_gettimeofday.s
Libc-498.tar.gz
[apple/libc.git] / ppc / sys / ppc_gettimeofday.s
index e1dab52f226a16953fe0351c3e80e91e7bce5a19..3cfd2b3a117b61b23122a3774057b8f641a1fb4b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 1999-2006 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
 
 MI_ENTRY_POINT(___commpage_gettimeofday)
     ba _COMM_PAGE_GETTIMEOFDAY
-
-
-/* This syscall is special cased: the timeval is returned in r3/r4.
- * Note also that the "seconds" field of the timeval is a long, so
- * it's size is mode dependent.
- */
-MI_ENTRY_POINT(___ppc_gettimeofday)
-    mr      r12,r3              // save ptr to timeval
-    SYSCALL_NONAME(gettimeofday,0)
-       mr.     r12,r12             // was timeval ptr null?
-       beq     3f
-       stg     r3,0(r12)           // "stw" in 32-bit mode, "std" in 64-bit mode
-       stw     r4,GPR_BYTES(r12)
-       li      r3,0
-3:
-       blr
-