Home | History | Annotate | Download | only in sys

Lines Matching refs:getsid

45 	atf_tc_set_md_var(tc, "descr", "Test getsid(0)");
52 sid = getsid(0);
55 if (sid != getsid(getpid()))
56 atf_tc_fail("getsid(0) did not match the calling process");
62 atf_tc_set_md_var(tc, "descr", "Test error conditions in getsid(2)");
70 ATF_REQUIRE(getsid(-1) == -1);
77 atf_tc_set_md_var(tc, "descr", "Test getsid(2) with processes");
85 sid = getsid(0);
93 csid = getsid(0);
99 if (getsid(ppid) != csid)