| slovo | definícia |  
threaded (encz) | threaded,vláknitý	adj:		Zdeněk Brož |  
threaded (encz) | threaded,závitový	adj:		Zdeněk Brož |  
Threaded (gcide) | Thread \Thread\, v. t. [imp. & p. p. Threaded; p. pr. & vb. n.
    Threading.]
    1. To pass a thread through the eye of; as, to thread a
       needle.
       [1913 Webster]
 
    2. To pass or pierce through as a narrow way; also, to effect
       or make, as one's way, through or between obstacles; to
       thrid.
       [1913 Webster]
 
             Heavy trading ships . . . threading the Bosphorus.
                                                   --Mitford.
       [1913 Webster]
 
             They would not thread the gates.      --Shak.
       [1913 Webster]
 
    3. To form a thread, or spiral rib, on or in; as, to thread a
       screw or nut.
       [1913 Webster] |  
threaded (wn) | threaded
     adj 1: (of bolts or screws) having screw threads |  
threaded (foldoc) | thread
 threaded
 threading
 
    1. See multithreading.
 
    2. See threaded code.
 
    3. topic thread.
 
    [Jargon File]
  |  
  | | podobné slovo | definícia |  
threaded (encz) | threaded,vláknitý	adj:		Zdeněk Brožthreaded,závitový	adj:		Zdeněk Brož |  
Double-threaded (gcide) | Double-threaded \Dou"ble-thread`ed\, a.
    1. Consisting of two threads twisted together; using two
       threads.
       [1913 Webster]
 
    2. (Mech.) Having two screw threads instead of one; -- said
       of a screw in which the pitch is equal to twice the
       distance between the centers of adjacent threads.
       [1913 Webster] |  
threaded (wn) | threaded
     adj 1: (of bolts or screws) having screw threads |  
multithreaded (foldoc) | multithreading
 multithreaded
 
     Sharing a single CPU between multiple tasks (or
    "threads") in a way designed to minimise the time required to
    switch threads.  This is accomplished by sharing as much as
    possible of the program execution environment between the
    different threads so that very little state needs to be saved
    and restored when changing thread.
 
    Multithreading differs from multitasking in that threads
    share more of their environment with each other than do tasks
    under multitasking.  Threads may be distinguished only by the
    value of their program counters and stack pointers while
    sharing a single address space and set of {global
    variables}.  There is thus very little protection of one
    thread from another, in contrast to multitasking.
 
    Multithreading can thus be used for very {fine-grain
    multitasking}, at the level of a few instructions, and so can hide
    latency by keeping the processor busy after one thread issues a
    long-latency instruction on which subsequent instructions in that
    thread depend.
 
    A light-weight process is somewhere between a thread and a
    full process.
 
    TL0 is an example of a threaded machine language.
    Dataflow computation (E.g. Id and SISAL) is an extreme
    form of multithreading.
 
    (1997-12-23)
  |  
threaded (foldoc) | thread
 threaded
 threading
 
    1. See multithreading.
 
    2. See threaded code.
 
    3. topic thread.
 
    [Jargon File]
  |  
threaded code (foldoc) | threaded code
 
     A technique for implementing virtual machine
    interpreters, introduced by J.R. Bell in 1973, where each
    op-code in the virtual machine instruction set is the
    address of some (lower level) code to perform the required
    operation.  This kind of virtual machine can be implemented
    efficiently in machine code on most processors by simply
    performing an indirect jump to the address which is the next
    instruction.
 
    Many Forth implementations use threaded code and nowadays
    some use the term "threading" for almost any technique used to
    implement Forth's virtual machine.
 
    (http://complang.tuwien.ac.at/forth/threaded-code.html).
 
    ["James R. Bell", "Threaded Code", CACM, 1973, 16, 6, pp
    370-372].
 
    ["An Architectural Trail to Threaded Code Systems", Kogge,
    P. M., IEEE Computer, March 1982].
 
    (1998-09-02)
  |  
  |