joinable

网络  可连接; 可结合的; 可汇合的; 可连接的; 可接合的

计算机



双语例句

  1. Thread bodies consist of active running threads and dead joinable threads.
    线程体包括运行的活动线程和可接合的死线程。
  2. And most likely, such a memory leak is caused by a failure to join the joinable threads.
    这种内存泄漏很有可能是因未能联接可接合线程而造成的。
  3. By default, the new created is joinable.
    默认情况下,新创建的线程是可接合的。
  4. Let's start by reviewing POSIX threads, which can be either joinable threads or detached threads.
    我们首先回顾一下POSIX线程,分为可接合线程或分离线程。
  5. The thread resources of the joinable thread are released only after it is joined.
    可合并线程的线程资源只有在其被合并后才被释放。
  6. If you create a joinable thread but forget to join it, its resources or private memory are always kept in the process space and never reclaimed.
    如果您创建一个可接合的线程,但是忘记联接它,其资源或私有内存一直保存在进程空间中,从未进行回收再利用。
  7. Joinable threads should be joined during programming.
    在编程过程中应当联接可接合线程。
  8. In joinable state, another thread can synchronize on the thread's termination and recover its termination code using the function pthread_join().
    在可连接状态中,另一个线程可以同步这个线程的终止,使用函数pthreadjoin()来重新获得其终止代码。
  9. It creates new joinable threads ceaselessly until failure happens.
    它不断创建新的可接合线程,直至有故障发生。
  10. If you want to produce a new thread and you need to know how it is terminated, then you need a joinable thread.
    如果您希望生成一个新的线程,且需要知道它是如何终止的,那么您需要一个可接合线程。
  11. You can fix the leak by adding code to call pthread_join(), which joins each joinable thread.
    要修复泄漏,您可以添加代码调用pthreadjoin(),该方法可联接每个可接合线程。
  12. If the leak exists, check the source code to see if all joinable threads have been joined.
    如果确实存在,检查源代码,看是否联接了所有可接合线程。
  13. All responding machines appear in the list of joinable clusters.
    所有响应消息都会出现在可加入集群的列表中。
  14. For joinable threads, the system allocates private storage to store thread termination status.
    对于可接合线程,系统分配专用存储器来存储线程终止状态。