Lines Matching refs:scope
219 * @tc.name test the default value of sched scope.
227 int scope = -1;
228 int rt = pthread_attr_getscope(&attr, &scope);
230 EXPECT_EQ(scope, PTHREAD_SCOPE_PROCESS) << "check default scope failed. expect PTHREAD_SCOPE_PROCESS";
235 * @tc.name test set and get scope.
252 int scope = -1;
253 rt = pthread_attr_getscope(&attr, &scope);
255 EXPECT_EQ(scope, PTHREAD_SCOPE_PROCESS) << "check scope failed. expect PTHREAD_SCOPE_PROCESS";