Definitions for "ReëNtrant" Add To Word List
Login or Register  | Word Lists | Search History

A characteristic of a function which can be called concurrently by multiple threads without mishap.
Helpful?           0
The attribute of a program or routine that allows the same copy of a program or routine to be used concurrently by two or more tasks.
Helpful?           0
a small valley running down a hillside. A stream cut into a hillside would create a reentrant-type feature. On a map, the contour lines which describe a reentrant point uphill.
Helpful?           0
adj. Refers to code which can safely be called from interrupts or in other circumstances in which it is possible that another instance of the code is simultaneously active. Reentrant code has to be very careful of the way it manipulates data: the data must either all be local, or else protected by semaphores or the like.
Helpful?           0
a program that does not modify itself. A single copy of a reentrant program can be shared by several users or tasks.
Helpful?           0
A reentrant subprogram is a subprogram which can be in invoked any number of times in parallel, without interference between the various invocations. See A Pure (Reentrant) Parser.
Helpful?           0
A computer program or routine is described as reentrant if it can be safely called recursively or from multiple processes. To be reentrant, a function must hold no static data, must not return a pointer to static data, must work only on the data provided to it by the caller, and must not call non-reentrant functions.
Helpful?           0