vfs_timestamp (9)
Leading comments
Copyright (C) 2001 Chad David <davidc@acns.ab.ca>. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice(s), this list of conditions and the following disclaimer as the first lines of this file unmodified other than the possible addition of one or more copyright notices. 2. Redistributions in binary for...
NAME
vfs_timestamp - generate current timestampSYNOPSIS
In sys/param.h In sys/vnode.h Ft void Fn vfs_timestamp struct timespec *tspDESCRIPTION
The Fn vfs_timestamp function fills in Fa tsp with the current time.The precision is based on the value of the vfs.timestamp_precision sysctl variable:
- 0
- seconds only; nanoseconds are zeroed.
- 1
- seconds and nanoseconds, accurate within 1/HZ.
- 2
- seconds and nanoseconds, truncated to microseconds.
- >3
- seconds and nanoseconds, maximum precision.