mirror of
https://github.com/anrieff/libcpuid
synced 2025-10-03 11:01:30 +00:00
Added cpu_clock_by_ic() function to measure cpu clock using instruction counting. Still not translated to MSVC, and isn't tested on CPUs other than Core i7 (but there it works beatifully). Bumped version to 0.1.3.
git-svn-id: https://svn.code.sf.net/p/libcpuid/code/HEAD/libcpuid@77 3b4be424-7ac5-41d7-8526-f4ddcb85d872
This commit is contained in:
parent
af2c364e85
commit
44c313126b
14 changed files with 444 additions and 36 deletions
|
@ -1,4 +1,4 @@
|
|||
AC_INIT([libcpuid CPU Identification library], [0.1.1], [libcpuid-devel@lists.sourceforge.net], [libcpuid])
|
||||
AC_INIT([libcpuid CPU Identification library], [0.1.3], [libcpuid-devel@lists.sourceforge.net], [libcpuid])
|
||||
AC_CONFIG_SRCDIR([libcpuid/libcpuid.h])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
AM_INIT_AUTOMAKE([-Wall dist-bzip2 dist-zip foreign])
|
||||
|
@ -12,9 +12,11 @@ dnl When you make a change that adds features, increment AGE, and set REVISION t
|
|||
dnl C:A:R
|
||||
dnl 10:0:0 Version 0.1.0
|
||||
dnl 11:0:0 Version 0.1.1: four more fields to cpu_raw_data_t
|
||||
dnl 11:0:1 Version 0.1.2: added cpu_msr* functions
|
||||
dnl 11:0:2 Version 0.1.3: added cpu_clock_by_ic() function
|
||||
LIBCPUID_CURRENT=11
|
||||
LIBCPUID_AGE=0
|
||||
LIBCPUID_REVISION=0
|
||||
LIBCPUID_REVISION=2
|
||||
AC_SUBST([LIBCPUID_AGE])
|
||||
AC_SUBST([LIBCPUID_REVISION])
|
||||
AC_SUBST([LIBCPUID_CURRENT])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue