diff options
author | hiramatu <hiramatu> | 2007-10-15 15:21:23 +0000 |
---|---|---|
committer | hiramatu <hiramatu> | 2007-10-15 15:21:23 +0000 |
commit | 73fe2c10e0bfa9cce54dff8cc2d46d665139df8b (patch) | |
tree | 27cba337fb505c42477a9d2d2b8de42a56485e85 | |
parent | f2f51a0eb425c205b52203c1756527b19282f3cf (diff) | |
download | systemtap-steved-73fe2c10e0bfa9cce54dff8cc2d46d665139df8b.tar.gz systemtap-steved-73fe2c10e0bfa9cce54dff8cc2d46d665139df8b.tar.xz systemtap-steved-73fe2c10e0bfa9cce54dff8cc2d46d665139df8b.zip |
2007-10-15 Masami Hiramatsu <mhiramat@redhat.com>
* autoconf-tsc-khz.c: Fix a bug to be configured correctly.
-rw-r--r-- | runtime/ChangeLog | 4 | ||||
-rw-r--r-- | runtime/autoconf-tsc-khz.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/runtime/ChangeLog b/runtime/ChangeLog index 65702a00..900ef0fc 100644 --- a/runtime/ChangeLog +++ b/runtime/ChangeLog @@ -1,3 +1,7 @@ +2007-10-15 Masami Hiramatsu <mhiramat@redhat.com> + + * autoconf-tsc-khz.c: Fix a bug to be configured correctly. + 2007-10-09 Martin Hunt <hunt@redhat.com> * user/*: Removed obsolete userspace test files. diff --git a/runtime/autoconf-tsc-khz.c b/runtime/autoconf-tsc-khz.c index d6424251..8f6a814c 100644 --- a/runtime/autoconf-tsc-khz.c +++ b/runtime/autoconf-tsc-khz.c @@ -1,3 +1,3 @@ #include <asm/tsc.h> -unsigned int tsc = tsc_khz; +unsigned int *ptsc = &tsc_khz; |