Changeset 51e40030
- Timestamp:
- Dec 14, 2011 3:59:19 AM (9 years ago)
- Branches:
- master
- Children:
- 212981d, 7864404
- Parents:
- 6da32a1 (diff), 5673a65 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
build.properties
r6da32a1 r51e40030 10 10 # Javadocs 11 11 # Note: Include the trailing slash! Don't surround the URL in quotes! 12 javasedocs.url=http://do wnload.oracle.com/javase/6/docs/api/12 javasedocs.url=http://docs.oracle.com/javase/6/docs/api/ 13 13 jettydocs.url=http://docs.i2p2.de/jetty/javadoc/ 14 14 jrobindocs.url=http://docs.i2p-projekt.de/jrobin/javadoc/ -
core/java/src/freenet/support/CPUInformation/AMDCPUInfo.java
r6da32a1 r51e40030 1 1 /* 2 2 * Created on Jul 17, 2004 3 *4 */5 package freenet.support.CPUInformation;6 7 /**8 * @author Iakin9 * An interface for classes that provide lowlevel information about AMD CPU's10 3 * 11 4 * free (adj.): unencumbered; not under the control of others … … 14 7 * It probably won't make your computer catch on fire, or eat 15 8 * your children, but it might. Use at your own risk. 9 */ 10 package freenet.support.CPUInformation; 11 12 /** 13 * An interface for classes that provide lowlevel information about AMD CPU's 14 * 15 * @author Iakin 16 16 */ 17 17 public interface AMDCPUInfo extends CPUInfo { -
core/java/src/freenet/support/CPUInformation/CPUID.java
r6da32a1 r51e40030 2 2 * Created on Jul 14, 2004 3 3 * Updated on Jan 8, 2011 4 * 5 * free (adj.): unencumbered; not under the control of others 6 * Written by Iakin in 2004 and released into the public domain 7 * with no warranty of any kind, either expressed or implied. 8 * It probably won't make your computer catch on fire, or eat 9 * your children, but it might. Use at your own risk. 4 10 */ 5 11 package freenet.support.CPUInformation; … … 18 24 19 25 /** 20 * @author Iakin21 26 * A class for retrieveing details about the CPU using the CPUID assembly instruction. 22 27 * A good resource for information about the CPUID instruction can be found here: 23 28 * http://www.paradicesoftware.com/specs/cpuid/index.htm 24 29 * 25 * free (adj.): unencumbered; not under the control of others 26 * Written by Iakin in 2004 and released into the public domain 27 * with no warranty of any kind, either expressed or implied. 28 * It probably won't make your computer catch on fire, or eat 29 * your children, but it might. Use at your own risk. 30 * @author Iakin 30 31 */ 31 32 -
core/java/src/freenet/support/CPUInformation/CPUInfo.java
r6da32a1 r51e40030 2 2 * Created on Jul 14, 2004 3 3 * Updated on Jan 8, 2011 4 */5 package freenet.support.CPUInformation;6 7 /**8 * @author Iakin9 * An interface for classes that provide lowlevel information about CPU's10 4 * 11 5 * free (adj.): unencumbered; not under the control of others … … 14 8 * It probably won't make your computer catch on fire, or eat 15 9 * your children, but it might. Use at your own risk. 10 */ 11 package freenet.support.CPUInformation; 12 13 /** 14 * An interface for classes that provide lowlevel information about CPU's 15 * 16 * @author Iakin 16 17 */ 17 18 -
core/java/src/freenet/support/CPUInformation/IntelCPUInfo.java
r6da32a1 r51e40030 1 1 /* 2 2 * Created on Jul 17, 2004 3 *4 */5 package freenet.support.CPUInformation;6 7 /**8 * @author Iakin9 * An interface for classes that provide lowlevel information about Intel CPU's10 3 * 11 4 * free (adj.): unencumbered; not under the control of others … … 14 7 * It probably won't make your computer catch on fire, or eat 15 8 * your children, but it might. Use at your own risk. 9 */ 10 package freenet.support.CPUInformation; 11 12 /** 13 * An interface for classes that provide lowlevel information about Intel CPU's 14 * 15 * @author Iakin 16 16 */ 17 17 public interface IntelCPUInfo extends CPUInfo {
Note: See TracChangeset
for help on using the changeset viewer.