RCCE_wtime.3 882 B

12345678910111213141516171819202122232425262728293031
  1. .TH RCCE 3 2010-03-14 "RCCE MANPAGE" "RCCE Library"
  2. .SH NAME
  3. RCCE_wtime \- returns the number of seconds since some specific time in the past.
  4. .SH SYNOPSIS
  5. .B #include <rcce.h>
  6. .sp
  7. .BI "double RCCE_wtime(void);
  8. .SH DESCRIPTION
  9. .BR RCCE_wtime()
  10. returns the number of seconds since some specific time in the past. By calling this
  11. function upon entry and exit of a block of code, one can find the elapsed wall clock
  12. time within. This is closely modeled after the wall clock timers in MPI and OpenMP.
  13. There is no guarantee that return values of RCCE_wtime() for different UEs are related.
  14. When power management routines are called, the accuracy of the timer is not guaranteed.
  15. .SH "RETURN VALUE"
  16. An double equal to the number of seconds since some specific time in the past.
  17. .SH ERRORS
  18. Look in
  19. .BR rcce.h
  20. for additional error codes.
  21. .SH "SEE ALSO"
  22. rcce.h(5)
  23. .SH EXAMPLE