date and time created 80/04/09 16:25:34 by bill
authorBill Joy <bill@ucbvax.Berkeley.EDU>
Thu, 10 Apr 1980 07:25:34 +0000 (23:25 -0800)
committerBill Joy <bill@ucbvax.Berkeley.EDU>
Thu, 10 Apr 1980 07:25:34 +0000 (23:25 -0800)
SCCS-vsn: sys/sys/times.h 3.1

usr/src/sys/sys/times.h [new file with mode: 0644]

diff --git a/usr/src/sys/sys/times.h b/usr/src/sys/sys/times.h
new file mode 100644 (file)
index 0000000..07ba22e
--- /dev/null
@@ -0,0 +1,11 @@
+/*     times.h 3.1     %H%     */
+
+/*
+ * Structure returned by times()
+ */
+struct tms {
+       time_t  tms_utime;              /* user time */
+       time_t  tms_stime;              /* system time */
+       time_t  tms_cutime;             /* user time, children */
+       time_t  tms_cstime;             /* system time, children */
+};