|
From: Julian S. <js...@ac...> - 2009-01-05 02:10:02
|
> I am willing to test a bunch of shell utilities and code to find more > syscalls that are missing, but should I open individual tickets for each > syscall or stuff them onto the existing ticket? Put them all on the existing ticket. The important information is, in each case, the syscall number and the architecture (x86, amd64, etc). Actually if you look at the function setup_post_syscall_table in h_main.c it's easy to add the missing entries. Syscalls which don't return pointers (almost all syscalls) can just be added to the table without any further thought. (The important distinction here is: does this syscall return a pointer, or a non-pointer) ? J |