Re: RFC 3542 or RFC 2292 - Advanced Sockets Application Program Interface (API) for IPv6

2007-11-26 Thread cormac mullally
Hello Max, Ok i found it, in C:\openjdk\hotspot\src\share\vm\prims\jvm.cpp JVM_LEAF(jint, JVM_Socket(jint domain, jint type, jint protocol)) JVMWrapper("JVM_Socket"); return hpi::socket(domain, type, protocol); JVM_END And then for linix i found C:\openjdk\hotspot\src\os\linux\vm\hpi_linux.

Re: RFC 3542 or RFC 2292 - Advanced Sockets Application Program Interface (API) for IPv6

2007-11-26 Thread Max (Weijun) Wang
It's defined in the hotspot workspace. Max On Nov 26, 2007, at 6:23 PM, cormac mullally wrote: JVM_Socket

Re: RFC 3542 or RFC 2292 - Advanced Sockets Application Program Interface (API) for IPv6

2007-11-26 Thread cormac mullally
Hi all, I'm continuing to look at how java implements its sockets. Just had a look at how it works for solaris and linix. Can anyone give me any information on the function JVM_Socket, It is defined in the jvm.h file, but I can't find it implementation. Can someone confirm that is it built on th