Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DCC684EBC for ; Fri, 20 May 2011 01:39:45 +0000 (UTC) Received: (qmail 75709 invoked by uid 500); 20 May 2011 01:39:45 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 75688 invoked by uid 500); 20 May 2011 01:39:45 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 75681 invoked by uid 99); 20 May 2011 01:39:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 May 2011 01:39:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 May 2011 01:39:43 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A980623889E1; Fri, 20 May 2011 01:39:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1125202 - in /activemq/sandbox/activemq-apollo-old/activemq-syscall: pom.xml src/main/java/org/apache/activemq/syscall/jni/CLibrary.java src/main/java/org/apache/activemq/syscall/util/IOBenchmark.java Date: Fri, 20 May 2011 01:39:21 -0000 To: commits@activemq.apache.org From: chirino@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110520013921.A980623889E1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chirino Date: Fri May 20 01:39:21 2011 New Revision: 1125202 URL: http://svn.apache.org/viewvc?rev=1125202&view=rev Log: Making the module build. Removed: activemq/sandbox/activemq-apollo-old/activemq-syscall/src/main/java/org/apache/activemq/syscall/util/IOBenchmark.java Modified: activemq/sandbox/activemq-apollo-old/activemq-syscall/pom.xml activemq/sandbox/activemq-apollo-old/activemq-syscall/src/main/java/org/apache/activemq/syscall/jni/CLibrary.java Modified: activemq/sandbox/activemq-apollo-old/activemq-syscall/pom.xml URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-apollo-old/activemq-syscall/pom.xml?rev=1125202&r1=1125201&r2=1125202&view=diff ============================================================================== --- activemq/sandbox/activemq-apollo-old/activemq-syscall/pom.xml (original) +++ activemq/sandbox/activemq-apollo-old/activemq-syscall/pom.xml Fri May 20 01:39:21 2011 @@ -20,7 +20,7 @@ org.apache.activemq activemq-parent - 6.0-SNAPSHOT + 5.5.0 4.0.0 @@ -33,6 +33,13 @@ ActiveMQ's interface to native system calls + + apache-snapshots + https://repository.apache.org/content/repositories/snapshots + true + false + + mvnplugins.snapshot.m2 @@ -59,11 +66,12 @@ org.fusesource.hawtjni hawtjni-runtime - 1.0-SNAPSHOT + 1.1 org.apache.activemq - activemq-util + activemq-core + 5.5.0 @@ -90,7 +98,7 @@ org.fusesource.hawtjni maven-hawtjni-plugin - 1.0-SNAPSHOT + 1.1 generate Modified: activemq/sandbox/activemq-apollo-old/activemq-syscall/src/main/java/org/apache/activemq/syscall/jni/CLibrary.java URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-apollo-old/activemq-syscall/src/main/java/org/apache/activemq/syscall/jni/CLibrary.java?rev=1125202&r1=1125201&r2=1125202&view=diff ============================================================================== --- activemq/sandbox/activemq-apollo-old/activemq-syscall/src/main/java/org/apache/activemq/syscall/jni/CLibrary.java (original) +++ activemq/sandbox/activemq-apollo-old/activemq-syscall/src/main/java/org/apache/activemq/syscall/jni/CLibrary.java Fri May 20 01:39:21 2011 @@ -28,7 +28,6 @@ import static org.fusesource.hawtjni.run import static org.fusesource.hawtjni.runtime.FieldFlag.*; import static org.fusesource.hawtjni.runtime.ArgFlag.*; -import static org.fusesource.hawtjni.runtime.Pointer.*; /** * * @author Hiram Chirino @@ -224,11 +223,11 @@ public class CLibrary { public static final native void memmove ( @JniArg(cast="void *") long dest, - @JniArg(cast="const void *", flags={NO_OUT, CRITICAL}, pointer=FALSE) long[] src, + @JniArg(cast="const void *", flags={NO_OUT, CRITICAL}) long[] src, @JniArg(cast="size_t") long size); public static final native void memmove ( - @JniArg(cast="void *", flags={NO_IN, CRITICAL}, pointer=FALSE) long[] dest, + @JniArg(cast="void *", flags={NO_IN, CRITICAL}) long[] dest, @JniArg(cast="const void *") long src, @JniArg(cast="size_t") long size);