Словари, Словарь Dictionary
! & ( * , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = @ %
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ { ~
R2 R3 R4 R: RA RB RC RD RE RF RG RH RI RJ RK RL RM RN RO RP RR RS RT RU RW RX

re-entrant

 
 
re-entrant Used to describe code which can have multiple simultaneous, interleaved, or nested invocations which will not interfere with each other. This is important for , functions or subroutines, and . It is usually easy to arrange for multiple invocations (e.g. calls to a subroutine) to share one copy of the code and any read-only data but, for the code to be re-entrant, each invocation must use its own copy of any modifiable data (or synchronised access to shared data). This is most often achieved using a and allocating local variables in a new for each invocation. Alternatively, the caller may pass in a pointer to a block of memory which that invocation can use (usually for outputting the result) or the code may allocate some memory on a , especially if the data must survive after the routine returns. Re-entrant code is often found in system software, such as and . It is also a crucial component of programs where the term "thread-safe" is often used instead of "re-entrant". (1996-12-21)
на заглавную О сайте10 самыхСловариОбратная связь к началу страницы
© 2010 Admin User
словарь
словарь online
online словарь
цитаты chrome
XHTML | CSS
1.8.11