|
From: Jeremy F. <je...@go...> - 2003-07-18 18:50:58
|
On Fri, 2003-07-18 at 06:48, Daniel Blueman wrote: > This app uses: > > res = __clone(lwp, stack + STACK_SIZE, > CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND, > (void *) ctx)) == -1); > > Perhaps this is a varient that valgrind does not support? Valgrind does not currently support any variant of clone. We are considering adding clone support, but I don't think it will be possible to do all (or even many) of the possible combinations of CLONE_* flags - but fortunately it seems that something like the flag set above would cover almost all real uses of clone(). J |