Lines Matching defs:newThread
210 pthread_t newThread;
213 returnVal = pthread_create(&newThread, NULL, ThreadFunc, NULL);
214 LogPrint(" pthread_create *thread:='&newThread' *attr:='NULL' *start_routine:='ThreadFunc' arg:='NULL', \n");
215 LogPrint(" --> returnVal:='%d', newThread:='%u(0x%x)', size:=%d\n",
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;
239 returnVal = pthread_create(&newThread, &threadAttr, ThreadFunc, NULL);
240 LogPrint(" pthread_create *thread:='&newThread' *attr:='&threadAttr' "
242 LogPrint(" --> returnVal:='%d',newThread:='%u(0x%x)'\n", returnVal, newThread, newThread);
267 EXPECT_EQ(pthread_join(newThread, nullptr), 0) << "pthread join errno = " << errno;