HomeSort by relevance Sort by last modified time
    Searched refs:s_thread (Results 1 - 2 of 2) sorted by null

  /external/valgrind/drd/tests/
pth_create_chain.c 12 static pthread_t s_thread[1000]; variable
27 pthread_create(&s_thread[thread_count], &attr, thread_func,
31 std::cout << "created " << thread_count << "(" << s_thread[thread_count]
45 assert(thread_count <= sizeof(s_thread) / sizeof(s_thread[0]));
51 pthread_create(&s_thread[thread_count], &attr, thread_func,
55 std::cout << "created " << thread_count << "(" << s_thread[thread_count]
60 // std::cout << "join " << i << "(" << s_thread[i] << ")" << std::endl;
61 pthread_join(s_thread[i], 0);
  /hardware/akm/AK8975_FS/akmdfs/
main.c 48 static pthread_t s_thread; /*!< Thread handle */ variable
84 if (pthread_create(&s_thread, &attr, thread_main, NULL) == 0) {
277 pthread_join(s_thread, NULL);

Completed in 103 milliseconds