Reentrant - Wikipedia, the free encyclopedia
Reentrant or re-entrant can refer to: •Reentrant (subroutine) in computer coding. •Reentrant mutex in computer science. •Salients, re-entrants and pockets in military tactics. •Reentrant tuning in ...
en.wikipedia.org/wiki/Reentrant
Reentrant (subroutine) - Wikipedia, the free encyclopedia
A computer program or routine is described as reentrant if the routine can be re-entered while it is already running (i.e it can be safely executed concurrently). To be reentrant, a computer program...
en.wikipedia.org/wiki/Reentrant_(subroutine)
It is written so that none of its code is modifiable (no values are changed) and it does not keep track of anything. The calling programs keep track of their own progress (variables, flags, etc.), thus one copy of the reentrant routine can be shared by any number of users ... Home > Solutions > Encyclopedia > reentrant code...
www.pcmag.com/encyclopedia_term/0,2542,t=reentrant+code... www.pcmag.com/encyclopedia_term/0,2542,t=reentrant+code&i=50332,00.asp
Reentrant functions, AKA "pure code", are often falsely thought to be any code that does not modify itself. Too many programmers feel if they simply avoid self-modifying code, then their routines ... Most real time systems require a certain amount of reentrant code, yet too many programmers have no idea what this entails.
www.ganssle.com/articles/areentra.htm
Encyclopedia article about reentrant code. Information about reentrant code in the Columbia Encyclopedia, Computer Desktop Encyclopedia, computing dictionary. ... reentrant code; Reentrant mutex; reentrant pathway; reentrant pathway; reentrant pathway; reentrant pathway; reentrant polygon; reentrant program; reentrant rhythm;
encyclopedia2.thefreedictionary.com/reentrant+code encyclopedia2.thefreedictionary.com/reentrant+code
This proposed model would make the programmer's job easier in following the guidelines for reentrant functions, and by using this model, code would be protected against the unintentional reentrancy bug.
www.ibm.com/developerworks/linux/library/l-reent.html
Subject: Reentrant code / Critical section / Atomic Section ... "Reentrant code" is a piece of code that could be simultaneously running by multiple threads of execution. (either via SMP, or via preemption on uniprocessor machines)
mail.nl.linux.org/kernelnewbies/2006-08/msg00062.html
You can use embedded SQL statements in multi-threaded or reentrant code. However, if you use a single connection, you are restricted to one active request per connection. In a multi-threaded application, you should not use the same connection to the database on each thread unless you use a semaphore to control access.
www.ianywhere.com/developer/product_manuals/sqlanywhere... www.ianywhere.com/developer/product_manuals/sqlanywhere/0901/en/html/dbpgen9/00000200.htm
If you know that your code is going to run only on a uniprocessor implementation, never try to use scheduling as a ... For example, in a thread-reentrant routine that is called multiple times to return a stream of information (such as to list all active connections to a server or to return a list of users),
www.mi.infn.it/~calcolo/OpenVMS/ssb71/6493/6493p004.htm