/* * Copyright (c) 1991, 1992 Paul Kranenburg * Copyright (c) 1993 Branko Lankester * Copyright (c) 1993-1996 Rick Sladkey * Copyright (c) 1996-1999 Wichert Akkerman * Copyright (c) 2012 H.J. Lu * Copyright (c) 2015 Elvira Khabirova * Copyright (c) 2015 Dmitry V. Levin * Copyright (c) 2015-2021 The strace developers. * All rights reserved. * * SPDX-License-Identifier: LGPL-2.1-or-later */ #include "defs.h" #include DEF_MPERS_TYPE(tms_t) #include typedef struct tms tms_t; #include MPERS_DEFS SYS_FUNC(times) { tms_t tbuf; if (exiting(tcp) && !umove_or_printaddr(tcp, tcp->u_arg[0], &tbuf)) { tprint_struct_begin(); PRINT_FIELD_CLOCK_T(tbuf, tms_utime); tprint_struct_next(); PRINT_FIELD_CLOCK_T(tbuf, tms_stime); tprint_struct_next(); PRINT_FIELD_CLOCK_T(tbuf, tms_cutime); tprint_struct_next(); PRINT_FIELD_CLOCK_T(tbuf, tms_cstime); tprint_struct_end(); } return 0; }