Home
last modified time | relevance | path

Searched refs:newThread (Results 1 – 1 of 1) sorted by relevance

/test/xts/acts/kernel_lite/process_posix/src/
DActsProcessApiTest.cpp210 pthread_t newThread; variable
213 returnVal = pthread_create(&newThread, NULL, ThreadFunc, NULL);
216 returnVal, newThread, newThread, sizeof(newThread));
218 returnVal = pthread_setname_np(newThread, "fThreadName");
220 "--> returnVal:='%d'\n", newThread, newThread, returnVal);
223 << "ErrInfo: pthread_setname_np thread:='" << newThread
224 << "(0x" << newThread << ")' *name:='fThreadName',"
226 EXPECT_EQ(pthread_join(newThread, nullptr), 0) << "pthread join errno = " << errno;
235 pthread_t newThread; variable
239 returnVal = pthread_create(&newThread, &threadAttr, ThreadFunc, NULL);
[all …]