summaryrefslogtreecommitdiff
path: root/sysutils/est/files
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2004-10-26 22:34:24 +0000
committerPav Lucistnik <pav@FreeBSD.org>2004-10-26 22:34:24 +0000
commitf4111be9408e5fae0b0c97bbfdf6a7f928d7408f (patch)
tree0594ac11e8553114a5920ee516d0f2dbf9eedccf /sysutils/est/files
parentUpgrade to latest snapshot. (diff)
- Update to 0.7
PR: ports/73175 Submitted by: cperciva (maintainer)
Notes
Notes: svn path=/head/; revision=120289
Diffstat (limited to 'sysutils/est/files')
-rw-r--r--sysutils/est/files/est.c.diff.fbsd427
1 files changed, 0 insertions, 27 deletions
diff --git a/sysutils/est/files/est.c.diff.fbsd4 b/sysutils/est/files/est.c.diff.fbsd4
deleted file mode 100644
index d9eb77eab9ff..000000000000
--- a/sysutils/est/files/est.c.diff.fbsd4
+++ /dev/null
@@ -1,27 +0,0 @@
---- est.c.orig Thu Aug 26 22:51:42 2004
-+++ est.c Thu Aug 26 22:53:59 2004
-@@ -33,7 +33,7 @@
- #include <sys/sysctl.h>
- #include <sys/module.h>
- #include <sys/kernel.h>
--#include <sys/pcpu.h>
-+#include <sys/proc.h>
-
- typedef struct {
- int mhz;
-@@ -566,13 +566,13 @@
-
- switch (what) {
- case MOD_LOAD:
-- err = kernel_sysctlbyname(curthread, "hw.model", hwmodel,
-+ err = kernel_sysctlbyname(curproc, "hw.model", hwmodel,
- &modellen, NULL, 0, NULL);
- if (err)
- return err;
-
- ncpulen = sizeof(ncpu);
-- err = kernel_sysctlbyname(curthread, "hw.ncpu", &ncpu,
-+ err = kernel_sysctlbyname(curproc, "hw.ncpu", &ncpu,
- &ncpulen, NULL, 0, NULL);
- if (err)
- return err;