diff options
author | glebius <glebius@FreeBSD.org> | 2013-04-08 19:40:53 +0000 |
---|---|---|
committer | glebius <glebius@FreeBSD.org> | 2013-04-08 19:40:53 +0000 |
commit | 9cf64d6c35c62c34531273aadc2bfc0e0606fd77 (patch) | |
tree | de8f9f44d18df863668a203bd7eaeaea76185b92 /sys/pc98 | |
parent | e01107c5d37d344c4a3ed663347b49eaf4527e4a (diff) | |
download | FreeBSD-src-9cf64d6c35c62c34531273aadc2bfc0e0606fd77.zip FreeBSD-src-9cf64d6c35c62c34531273aadc2bfc0e0606fd77.tar.gz |
Merge from projects/counters: counter(9).
Introduce counter(9) API, that implements fast and raceless counters,
provided (but not limited to) for gathering of statistical data.
See http://lists.freebsd.org/pipermail/freebsd-arch/2013-April/014204.html
for more details.
In collaboration with: kib
Reviewed by: luigi
Tested by: ae, ray
Sponsored by: Nginx, Inc.
Diffstat (limited to 'sys/pc98')
-rw-r--r-- | sys/pc98/include/counter.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/pc98/include/counter.h b/sys/pc98/include/counter.h new file mode 100644 index 0000000..7b2bbad --- /dev/null +++ b/sys/pc98/include/counter.h @@ -0,0 +1,6 @@ +/*- + * This file is in the public domain. + */ +/* $FreeBSD$ */ + +#include <i386/counter.h> |