linux-sun-jdk15 or jdk15 on 5.3R-p2  
Author Message
WillS





PostPosted: 2004-12-4 4:23:00 Top

java-programmer, linux-sun-jdk15 or jdk15 on 5.3R-p2 Hello,

I am another user who is not able to get linux-sun-jdk15=20
working on a 5.3-R machine. Truss shows:

linux_mkdir(0x805cba8,0x1ed) ERR#17 'File exists'
linux_lstat64(0x805cba8,0xbfbfc740,0xbfbfc898) =3D 0 (0x0)
linux_open("/tmp/hsperfdata_root/77570",0x242,0600) =3D 3 (0x3)
oftruncate(0x3,0x8000) =3D 0 (0x0)
linux_mmap(0xbfbfc8d0) =3D 681074688 =
(0x28986000)
close(3) =3D 0 (0x0)
#224() ERR#78 'Function not =
implemented'
SIGNAL 12 (SIGSYS)
SIGNAL 12 (SIGSYS)
Process stopped because of: 16
process exit, rval =3D 140
Bad system call

Is there a timetable on native support for 1.5 or=20
fixture of the linux-sun-jdk15 port? Should someone=20
mark the port as broken or remove it? It sounds like=20
it does not work on 4.x or 5.x at all.=20

-Will

_______________________________________________
email***@***.com mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-java
To unsubscribe, send any mail to "email***@***.com"
 
glewis





PostPosted: 2004-12-4 5:24:00 Top

java-programmer >> linux-sun-jdk15 or jdk15 on 5.3R-p2 On Fri, Dec 03, 2004 at 03:22:16PM -0500, Will Saxon wrote:
> I am another user who is not able to get linux-sun-jdk15
> working on a 5.3-R machine. Truss shows:
>
...
>
> Is there a timetable on native support for 1.5 or fixture of the
> linux-sun-jdk15 port?

For the native support, we don't issue timetables due to the voluntary
nature of the project.

In terms of the linux version, I've had a report of the Linux version
working on FreeBSD 6-CURRENT, but haven't heard of anything else. At
the very least it looks like another syscall needs to be implemented
in the Linux emulation layer.

> Should someone mark the port as broken or remove it? It sounds like
> it does not work on 4.x or 5.x at all.

It was just marked as IGNORE. BROKEN is probably better though.

--
Greg Lewis Email : email***@***.com
Eyes Beyond Web : http://www.eyesbeyond.com
Information Technology FreeBSD : email***@***.com
_______________________________________________
email***@***.com mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-java
To unsubscribe, send any mail to "email***@***.com"
 
glewis





PostPosted: 2004-12-4 6:42:00 Top

java-programmer >> linux-sun-jdk15 or jdk15 on 5.3R-p2 On Fri, Dec 03, 2004 at 03:22:16PM -0500, Will Saxon wrote:
> Hello,
>
> I am another user who is not able to get linux-sun-jdk15
> working on a 5.3-R machine. Truss shows:
>
> linux_mkdir(0x805cba8,0x1ed) ERR#17 'File exists'
> linux_lstat64(0x805cba8,0xbfbfc740,0xbfbfc898) = 0 (0x0)
> linux_open("/tmp/hsperfdata_root/77570",0x242,0600) = 3 (0x3)
> oftruncate(0x3,0x8000) = 0 (0x0)
> linux_mmap(0xbfbfc8d0) = 681074688 (0x28986000)
> close(3) = 0 (0x0)
> #224() ERR#78 'Function not implemented'

FWIW:

# grep 224 /usr/include/asm/unistd.h
#define __NR_gettid 224

And:

#include <sys/types.h>
#include <linux/unistd.h>

_syscall0(pid_t,gettid)

pid_t gettid(void);

DESCRIPTION

gettid returns the thread ID of the current process. This is equal to the
process ID (as returned by getpid(2)), unless the process is part of a
thread group (created by specifying the CLONE_THREAD flag to the clone(2)
system call). All processes in the same thread group have the same PID, but
each one has a unique TID.

RETURN VALUE

On success, returns the thread ID of the current process.

--
Greg Lewis Email : email***@***.com
Eyes Beyond Web : http://www.eyesbeyond.com
Information Technology FreeBSD : email***@***.com
_______________________________________________
email***@***.com mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-java
To unsubscribe, send any mail to "email***@***.com"