Hi, I got an email from Celelibi pointing me in the right direction (thanks!). It seems like that it is neccessary to use prctl(PR_SET_DUMPABLE, 1) to let strace -p to work. The dumpable flag is cleared in some setuid situations. Linux requires that real uid of strace process matches all of real uid, effective uid and saved uid and the real gid must match the real gid, effective gid and saved gid. And the dumpable flag must be set. -- #include <sys/types.h> #include <unistd.h> #include <sys/prctl.h> #define UID 9 #define GID 13 int main(int argc, char **argv) { setresgid(GID, GID, GID); setresuid(UID, UID, UID); prctl(PR_SET_DUMPABLE, 1); while (1) { sleep(1); write(1, "hello\n", 6); } return 1; } Kind regards Ole Bjorn Hessen. Telenor -- To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html