#include "defs.h"
#include <sys/resource.h>
-#include <sys/times.h>
#include "xlat/resources.h"
return RVAL_DECODED;
}
-
-SYS_FUNC(times)
-{
- struct tms tbuf;
-
- if (exiting(tcp)) {
- if (!umove_or_printaddr(tcp, tcp->u_arg[0], &tbuf)) {
- tprintf("{tms_utime=%llu, tms_stime=%llu, ",
- (unsigned long long) tbuf.tms_utime,
- (unsigned long long) tbuf.tms_stime);
- tprintf("tms_cutime=%llu, tms_cstime=%llu}",
- (unsigned long long) tbuf.tms_cutime,
- (unsigned long long) tbuf.tms_cstime);
- }
- }
- return 0;
-}
--- /dev/null
+#include "defs.h"
+#include <sys/times.h>
+
+SYS_FUNC(times)
+{
+ struct tms tbuf;
+
+ if (exiting(tcp)) {
+ if (!umove_or_printaddr(tcp, tcp->u_arg[0], &tbuf)) {
+ tprintf("{tms_utime=%llu, tms_stime=%llu, ",
+ (unsigned long long) tbuf.tms_utime,
+ (unsigned long long) tbuf.tms_stime);
+ tprintf("tms_cutime=%llu, tms_cstime=%llu}",
+ (unsigned long long) tbuf.tms_cutime,
+ (unsigned long long) tbuf.tms_cstime);
+ }
+ }
+ return 0;
+}