thread-safe

  • 11Comparison of TLS Implementations — The Transport Layer Security (TLS) protocol provide the ability to secure communications across networks. There are several TLS implementations which are free and open source software and sometimes choosing between the available implementations… …

    Wikipedia

  • 12Réentrance — En informatique, la réentrance est la propriété pour une fonction d être utilisable simultanément par plusieurs tâches utilisatrices. La réentrance permet d éviter la duplication en mémoire vive d un programme utilisé simultanément par plusieurs… …

    Wikipédia en Français

  • 13Seguridad en hilos — La seguridad en hilos es un concepto de programación aplicable en el contexto de los programas multihilos. Una pieza de código es segura en cuanto a los hilos si funciona correctamente durante la ejecución simultánea de múltiples hilos. En… …

    Wikipedia Español

  • 14Reentrance — Réentrance En informatique, la réentrance est la propriété pour une fonction d être utilisable simultanément par plusieurs tâches utilisatrices. La réentrance permet d éviter la duplication en mémoire vive d un programme utilisé simultanément par …

    Wikipédia en Français

  • 15Oxygene (programming language) — Oxygene Developer RemObjects Software Stable release 3.0.21 (August 29, 2009; 2 years ago (2009 08 29)) Influenced by Object Pas …

    Wikipedia

  • 16Reentrant (subroutine) — A computer program or routine is described as reentrant if it can be safely executed concurrently; that is, the routine can be re entered while it is already running. To be reentrant, a function: * Must hold no static (global) non constant data.… …

    Wikipedia

  • 17OpenMP — Original author(s) OpenMP Architecture Review Board[1] Developer(s) OpenMP Architecture Review Board …

    Wikipedia

  • 18Critical section — In concurrent programming a critical section is a piece of code that accesses a shared resource (data structure or device) that must not be concurrently accessed by more than one thread of execution. A critical section will usually terminate in… …

    Wikipedia

  • 19Non-blocking algorithm — In computer science, a non blocking algorithm ensures that threads competing for a shared resource do not have their execution indefinitely postponed by mutual exclusion. A non blocking algorithm is lock free if there is guaranteed system wide… …

    Wikipedia

  • 20Einzelstück (Entwurfsmuster) — Das Singleton (auch Einzelstück genannt) ist ein in der Softwareentwicklung eingesetztes Entwurfsmuster und gehört zur Kategorie der Erzeugungsmuster (engl. Creational Patterns). Es verhindert, dass von einer Klasse mehr als ein Objekt erzeugt… …

    Deutsch Wikipedia