Tagged Questions
Reentrancy usually refers to subroutines, functions, and methods. A subroutine is considered reentrant if it can be safely called before a previous call has completed.
18
votes
7answers
3k views
What exactly is a reentrant function?
Most of the times, the definition of reentrance is quoted from Wikipedia:
A computer program or routine is
described as reentrant if it can be
safely called again before its
previous ...
16
votes
2answers
3k views
Code Re-entrancy vs. Thread Safety
What is the difference between the concepts of "Code Re-entrancy" and "Thread Safety"? As per the link mentioned below, a piece of code can be either of them, both of them or neither of them.
...
10
votes
6answers
4k views
Threadsafe vs re-entrant
Recently, I asked a question, with title as "Is malloc thread safe?", and inside that I asked, "Is malloc re-entrant?"
I was under the impression that all re-entrant are thread-safe.
Is this ...
8
votes
4answers
207 views
Is there a way to flag the use of non-reentrant C library calls?
I'm working on a project that's heavily multi-threaded, and was wondering if there's a way to have the compiler flag the use of non-reentrant calls to the C library (e.g. strtok intsead of strtok_r)? ...
7
votes
4answers
140 views
Simplest way to make a whole method thread-safe?
There seems to be a lot to learn about multithreaded programming and it's all a bit intimidating.
For my current needs, I just want to protect against a method being called again from another thread ...
7
votes
5answers
1k views
Why are malloc() and printf() said as non-reentrant?
In UNIX systems we know malloc() is a non-reentrant function (system call). Why is that?
Similarly, printf() also is said to be non-reentrant; why?
I know the definition of re-entrancy, but I ...
6
votes
3answers
634 views
Recommended practices for re-entrant code in C, C++
I was going through a re-entrancy guide on recommended practices when writing re-entrant code.
What other references and resources cover this topic?
What lint-like tools can be used to check for ...
6
votes
2answers
394 views
What is a re-entrant parser?
Can someone explain this to me? In particular the difference between:
http://github.com/whymirror/greg and http://piumarta.com/software/peg/
The former being a re-entrant version of the later.
5
votes
6answers
485 views
Is the memcpy() function reentrant?
I call some C++ functions inside a signal handler and my program is terminated by segmentation fault.
When I check with gdb, memcpy() function is where i get SIGSEGV.
I would like to know if memcpy() ...
5
votes
3answers
219 views
Threading and static methods in C#
Here is a meaningless extension method as an example:
public static class MyExtensions
{
public static int MyExtensionMethod(this MyType e)
{
int x = 1;
x = 2;
...
5
votes
4answers
522 views
How to convince my co-worker the linux kernel code is re-entrant?
Yeah I know ... Some people are sometimes hard to convince of what sounds natural to the rest of us, an I need your help right now SO community (or I'll go postal soon ..)
One of my co-worker is ...
4
votes
5answers
440 views
Reentrant locking
A bit of help please, consider the bit of code below.
public class Widget {
public synchronized void doSomething() {
...
}
}
public class LoggingWidget extends Widget {
public ...
3
votes
2answers
128 views
malloc() is non-reentrant but thread-safe? [closed]
Possible Duplicate:
Malloc thread-safe?
I am not a bit confused while I am reading "The Linux Programming Interface".
From the book it says that malloc is non-reentrant since it ...
3
votes
2answers
65 views
What is the difference between thread-aware and thread-safe?
What is the difference between thread-awareness and thread-safety?
3
votes
3answers
5k views
Stopping timer in its callback method
I have a System.Threading.Timer that calls its appropriate event handler (callback) every 10 ms. The method itself is not reentrant and can sometimes take way longer than 10 ms. Thus, I want to stop ...
3
votes
7answers
13k views
what is the difference between re-entrant function and recursive function in C?
In C I know about the recursive function but I heard about the re-entrant function.What is that? And whats the difference between them?
2
votes
4answers
46 views
Is it possible to introduce multi threading in dotnet without explicity creating new threads?
I have a loop of several hundred items which need to be processed.
Each item is processed by conditionally setting a global SQLConnection where upon the item is processed using this SQLConnection as ...
2
votes
2answers
190 views
MySQL and PHP: Atomicity and re-entrancy of a PHP code block executing two subsequent queries - how dangerous?
In MySQL I have to check whether select query has returned any records, if not I insert a record. I am afraid though that the whole if-else operation in PHP scripts is NOT as atomic as I would like, ...
2
votes
4answers
64 views
Future Protections in Managed Languages and Runtimes
In the future, will managed runtimes provide additional protections against subtle data corruption issues?
Managed runtimes such as Java and the .NET CLR reduce or eliminate the possibility of many ...
1
vote
1answer
31 views
Reentrant duplex communication with WCF
I have a C# program which will have multiple instances that need to communicate with each other, executing commands and sending data back and forth. Right now, this is accomplished using WM_COPYDATA, ...
1
vote
1answer
37 views
Windows: how to spawn threads from (NDIS) kernel driver?
Which function is recommended to spawn a new thread within NDIS5/6 context? Looking for something that is guaranteed to work at IRQL=PASSIVE (e.g. no bsods out of nothing); by a quick examination of ...
1
vote
0answers
32 views
Preventing reentrancy and enforcing consistent state
So let's say I have a C API that looks like this:
// configure various parameters
int set_option(const char* name, const char* value);
// callback invoked during long running operation
typedef int ...
1
vote
2answers
86 views
Is the following code reentrant and thread-safe?
Is the following code is reentrant?
Is it thread-safe, if this.NextToExecuteIndex is declared private int NextToExecuteIndex = 0; and not computed anywhere else?
protected override void ...
1
vote
1answer
60 views
Locking global array in a reentrancy-desired function in a multithreaded program?
Sorry if a question title is confusing. I just wanted to put all the things together.
I have a piece of code like:
int newThread(int(*pfunc)())
{
pthread_t tid;
pthread_create(&tid, NULL, ...
1
vote
3answers
91 views
Are there any cpp functions or objects (excluding inherited from c) that are not thread safe even when each thread operates on its own data?
Sorry for the long title, but I think it explains well what I'm interested in. For example C function strtok is not thread safe in worst possible way :) , it uses a global state. So even if it is ...
1
vote
1answer
195 views
Is match(Uri) of class UriMatcher reentrant?
The examples that I have seen of how to make a ContentProvider have all used the UriMatcher#match(Uri) method within the insert, query, update, and delete methods to easily handle all of the URI ...
1
vote
2answers
258 views
Gui reentrancy with managed waiting
I've found a reentrancy problem when using NotifyIcons. It's really easy to reproduce, just drop a NotiftIcon on a form and the click event should look like this:
private bool reentrancyDetected;
...
1
vote
2answers
712 views
Writing re-entrant lexer with Flex
I'm newbie to flex. I'm trying to write a simple re-entrant lexer/scanner with flex. The lexer definition goes below. I get stuck with compilation errors as shown below (yyg issue):
reentrant.l:
/* ...
1
vote
1answer
416 views
How do I fix the “Reentrancy was detected” warning given by the Visual Studio debugger?
When running our unit tests in debug mode, at a certain point the Visual Studio debugger breaks to show the reentrancy MDA. The linked article explains that this occurs when A low-level operating ...
1
vote
7answers
908 views
Are recursive functions re-entrant
I have seen many recursive functions(mostly used in computing some mathematical operations e.g. factorial, sum of the digits in a number, etc...) which involve use of a static variable which holds the ...
1
vote
1answer
623 views
Reentrancy was detected
I'm getting "Reentrancy was detected" MDA error while setting a webbrowser control's properties.
This only happens if I call "SetWindowsHookEx" to hook some dials within the same thread.
Normally ...
0
votes
1answer
24 views
Reentrancy in Boost
When working with multithreading, I need to make sure that the boost classes I use are reentrant (even when each thread uses its own object instance).
I'm having hard time finding in the ...
0
votes
1answer
118 views
Are fprintf and fscanf reentrant when using different file handles
Can I have 2 threads in the same process calling fprintf or fscanf at the same time?
One stream is written to by the first thread and is read by the second thread and the other stream is read by the ...
0
votes
1answer
262 views
Is Tesseract(an OCR engine) reentrant?
I am doing OCR using Tesseract on a quad-core processor.
For better speed, I want to read 4 words at a time, using 4 threads.
Is it safe to call Tesseract from multiple threads concurrently?
Note: ...
0
votes
3answers
306 views
Can glibc sprintf be used in a reentrant function?
Can I use sprintf in a reentrant funtion if it writes in a local buffer? Something like this:
void reentrant_function () {
int i = 4;
char buffer[20];
snprintf(buffer, 20, "%d", i);
}
0
votes
5answers
185 views
Reentrancy and recursion
Would it be a true statement to say that every recursive function needs to be reentrant?
0
votes
3answers
315 views
Concurrent execution/Re-entrant /ThreadSafe/?
I read many answers given here for questions related to thread safety, re-entrancy, but when i think about them, some more questions came to mind, hence this question/s.
1.) I have one executable ...
0
votes
2answers
342 views
.NET CF 2.0: possible single-threaded reentrancy
A simple application is written in CF 2.0. It's single-threaded as far as I'm concerned.
Two parts of the application are of interest: an event handler that handles "Barcode scanned" event raised by ...
0
votes
7answers
1k views
Can I add an attribute to a function to prevent reentry?
At the moment, I have some functions which look like this:
private bool inFunction1 = false;
public void function1()
{
if (inFunction1) return;
inFunction1 = true;
// do stuff which ...
-1
votes
5answers
774 views