Skip to content

Commit

Permalink
Merge pull request #13 from batterseapower/master
Browse files Browse the repository at this point in the history
Version bumps and markup fixes necessary for building on JDK8
  • Loading branch information
chirino committed Aug 4, 2014
2 parents efa684c + c10adf5 commit 8c28532
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions hawtjni-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@
<dependency>
<artifactId>xbean-finder</artifactId>
<groupId>org.apache.xbean</groupId>
<version>3.6</version>
<version>3.18</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>3.1</version>
<version>5.0.3</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>3.1</version>
<version>5.0.3</version>
</dependency>

<!--
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public enum ArgFlag {

/**
* Indicate that GetPrimitiveArrayCritical() should be used instead
* of Get<PrimitiveType>ArrayElements() when transferring array of
* of Get&lt;PrimitiveType&gt;ArrayElements() when transferring array of
* primitives from/to C. This is an optimization to avoid copying
* memory and must be used carefully. It is ok to be used in
* MoveMemory() and memmove() natives.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public enum MethodFlag {
/**
* Indicate that the native method represents a structure global
* variable and the address of it should be returned to Java. This is
* done by prepending &.
* done by prepending &amp;.
*/
ADDRESS,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@
* <li> Compile the native libraries defining the NATIVE_STATS flag.</li>
* <li> Add the following code around the sections of
* interest to dump the native calls done in that section.
* <code><pre>
* <pre>
* StatsInterface si = MyFooStatsInterface.INSTANCE;
* NativeStats stats = new NativeStats(si);
* ... // your code
* stats.diff().dump(System.out);
* </pre></code>
* </pre>
* </li>
* <li> Or add the following code at a given point to dump a snapshot of
* the native calls done until that point.
* <code><pre>
* <pre>
* stats.snapshot().dump(System.out);
* </pre></code>
* </pre>
* </li>
* </ol>
*
Expand Down

0 comments on commit 8c28532

Please sign in to comment.