Hello, can someone direct me to a code sample showing usage of sys_clone on IA64 ? I use that syscall in the multipathd daemon, and I received compilation errors from IA64 pepole. As I don't have hardware to play with, I'd appreciate guidance. regards, -- christophe varoqui <christophe.varoqui@free.fr>
On Sun, Sep 19, 2004 at 12:21:30AM +0200, christophe varoqui wrote:> I use that syscall in the multipathd daemon, and I received compilation > errors from IA64 pepole. As I don't have hardware to play with, I'd > appreciate guidance.I don't know if this would be any help, but FYI HP's "test drive" systems include several IA64 Linux machines. I don't know their exact policies on granting access: http://www.testdrive.hp.com/ -Dave Dodge
christophe varoqui wrote:> Hello, > > can someone direct me to a code sample showing usage of sys_clone on > IA64 ? > I use that syscall in the multipathd daemon, and I received compilation > errors from IA64 pepole. As I don't have hardware to play with, I'd > appreciate guidance. > > regards,clone() doesn't work on IA64 because of the way that architecture handles the stack, it only has clone2(). Note: klibc is not multithreaded. -hpa