clocksource.h 407 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved.
  3. */
  4. #ifndef _ASM_SPARC_CLOCKSOURCE_H
  5. #define _ASM_SPARC_CLOCKSOURCE_H
  6. /* VDSO clocksources */
  7. #define VCLOCK_NONE 0 /* Nothing userspace can do. */
  8. #define VCLOCK_TICK 1 /* Use %tick. */
  9. #define VCLOCK_STICK 2 /* Use %stick. */
  10. struct arch_clocksource_data {
  11. int vclock_mode;
  12. };
  13. #endif /* _ASM_SPARC_CLOCKSOURCE_H */