Where are the native linux methods in openjdk?

Viewed 285

I am trying to find native method implementation for linux:

private native int socketRead0(FileDescriptor fd,
                                   byte b[], int off, int len,
                                   int timeout)

I could not find it in Openjdk source files. I grepped all the files for "socketRead0" but it found only implementations for windows and solaris. Where is it?

1 Answers
Related