*** empty log message ***
authorJohn Kohl <jtkohl@mit.edu>
Thu, 18 Jan 1990 11:10:49 +0000 (11:10 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Thu, 18 Jan 1990 11:10:49 +0000 (11:10 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@113 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/os/ustime.c [new file with mode: 0644]

diff --git a/src/lib/krb5/os/ustime.c b/src/lib/krb5/os/ustime.c
new file mode 100644 (file)
index 0000000..e9b802d
--- /dev/null
@@ -0,0 +1,42 @@
+/*
+ * $Source$
+ * $Author$
+ *
+ * Copyright 1990 by the Massachusetts Institute of Technology.
+ *
+ * For copying and distribution information, please see the file
+ * <krb5/mit-copyright.h>.
+ *
+ * krb5_mstimeofday for BSD 4.3
+ */
+
+#ifndef        lint
+static char rcsid_mstime_c[] =
+"$Id$";
+#endif lint
+
+#include <krb5/copyright.h>
+
+#include <sys/time.h>
+#include <errno.h>
+#include <stdio.h>
+
+#include <krb5/krb5.h>
+#include <krb5/libos-proto.h>
+
+extern int errno;
+
+krb5_error_code
+krb5_ms_timeofday(seconds, milliseconds)
+register krb5_int32 *seconds, *milliseconds;
+{
+    struct timeval tv;
+
+    if (gettimeofday(&tv, (struct timezone *)0) == -1) {
+       /* failed, return errno */
+       return (krb5_error_code) errno;
+    }
+    *seconds = tv.tv_sec;
+    *milliseconds = tv.tv_usec / 1000;
+    return 0;
+}