| I have not found getkerninfo available in system dynamic libraries on aix 6.1 (I assume bellow java related library doesn't count): [0] [AIX] root@aix61-2:~ # for i in `find / -name *\.so*`; do nm $i 2>/dev/null | grep T | grep getkerninfo; if [ $? -eq 0 ]; then echo $i; fi; done .getkerninfo T 268473200 /usr/java6/jre/lib/ppc/libnet.so .getkerninfo T 268452320 /usr/lpp/cas.agent/inst_root/var/opt/tivoli/ep/_jvm/jre/lib/ppc/libnet.so .getkerninfo T 268452320 /var/opt/tivoli/ep/_jvm/jre/lib/ppc/libnet.so Instead it is found in static system library: [0] [AIX] root@aix61-2:~ # nm /lib/libc.a | grep T | grep getkerninfo .getkerninfo T 1298384 One solution would be to go with a native extension, should I give it a try or there are other ways? |