logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

times.h (278B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _LINUX_TIMES_H
  3. #define _LINUX_TIMES_H
  4. #include <linux/types.h>
  5. struct tms {
  6. __kernel_clock_t tms_utime;
  7. __kernel_clock_t tms_stime;
  8. __kernel_clock_t tms_cutime;
  9. __kernel_clock_t tms_cstime;
  10. };
  11. #endif