Re: RFR 8038754: ReplayCacheTestProc test fails with timeout

2014-03-31 Thread Alan Bateman
On 31/03/2014 01:56, Wang Weijun wrote: Webrev updated at http://cr.openjdk.java.net/~weijun/8038754/webrev.01/ 'printf(s); printf("\n")' is now 'printf(s"\n");'. One less call, and seems an extra benefit to force /s/ being a real literal. At least it compiles now. Thanks Max Good sleuthi

Re: RFR 8038754: ReplayCacheTestProc test fails with timeout

2014-03-30 Thread Wang Weijun
Webrev updated at http://cr.openjdk.java.net/~weijun/8038754/webrev.01/ 'printf(s); printf("\n")' is now 'printf(s"\n");'. One less call, and seems an extra benefit to force /s/ being a real literal. At least it compiles now. Thanks Max On Mar 30, 2014, at 23:27, Wang Weijun wrote: > Hi >

Re: RFR 8038754: ReplayCacheTestProc test fails with timeout

2014-03-30 Thread Wang Weijun
On Mar 30, 2014, at 23:27, Wang Weijun wrote: > Hi > > Please take a review at > > http://cr.openjdk.java.net/~weijun/8038754/webrev.00/ > > Before JDK-8031003, the debug message inside native JGSS is printed out on > the Java side using > > System.out.println(msg); > > but after it, i

RFR 8038754: ReplayCacheTestProc test fails with timeout

2014-03-30 Thread Wang Weijun
Hi Please take a review at http://cr.openjdk.java.net/~weijun/8038754/webrev.00/ Before JDK-8031003, the debug message inside native JGSS is printed out on the Java side using System.out.println(msg); but after it, it is printed on the C side using puts(msg); and no newline will be