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.
5
votes
3answers
122 views
I don't understand 'Reentrancy' in java
Reentrancy means that locks are acquired on a per-thread rather than per-invocation basis.
Since a intrinsic lock is held by a thread,isn't if mean a thread run once equals a invecation basis?
Thank ...
0
votes
0answers
64 views
What does mean SSL_library_init is not reentrant for practical purposes?
I'm using openssl library to open a TLS connexion to some server. Reading the library documentation (yes, some people still read documentations and man pages) I stumbled upon the sentence ...
3
votes
1answer
150 views
Call a non-reentrant native shared library from multiple Java threads
I have some Java code that is calling some native code, originally written in Fortran, using JNA. (It's a numerical library, and lots of math people do their coding in Fortran.) It is compiled to a ...
0
votes
1answer
70 views
ASP.NET site recursively HTTP-requesting its own URLs
Background: I have an ASP.NET MVC web-application. I want to capture its user-visible HTML content periodically and persist it somewhere so I can track how content evolved over time. I want to be able ...
4
votes
2answers
77 views
Does framework have dedicated api to detect reentrancy?
I want to prohibit reentrancy for large set of methods.
for the single method works this code:
bool _isInMyMethod;
void MyMethod()
{
if (_isInMethod)
throw new ReentrancyException();
...
3
votes
1answer
201 views
Python signal handlers and reentry
Are signal handlers in Python reentrant?
I have a signal handler for a timer that snapshots the stack many times a second - its a statistical profiler. Can my signal handler re-enter if it takes too ...
3
votes
1answer
108 views
Dart: Is using a zero duration timer the supported way of deferring work to the event loop
I discovered by experimenting that creating a timer with a duration of 0 allows me to defer work into the event queue. I really like this feature, because it allows avoiding a lot of nasty reentrancy ...
1
vote
0answers
64 views
Using utf8proc in thread safe and reentrant code
I am refactoring a legacy C application to make it Unicode aware. It currently uses char* for strings. I have come across the utf8 library, but the documentation is sparse and I can't work out whether ...
1
vote
2answers
226 views
Force unlocking a reentrant lock
I have a reentrant lock which I am wrapping in a customized class for my own needs. However due to the nature of the application a thread holding the lock to the reentrant lock gets stuck (external ...
2
votes
1answer
82 views
Reentrant Functions That Require Variable Averaging
This is a pretty basic one that I just can't think of a good solution for. I have some code that is a superloop type architecture (no OS). There are some veriables in functions that require averaging: ...
0
votes
2answers
57 views
Reentrancy or not with this netbsd code
I am studying on "reading code" by reading pieces of NetBSD source code.
(for whoever is interested, it's < Code Reading: The Open Source Perspective > I'm reading)
And I found this function:
/* ...
1
vote
3answers
96 views
A function that use global variable but exit, should still be avoided in signal handlers ?
As I studied something about unix programming with C, I've learned that functions that fails to be reentrant should be avoided inside a signal handler, but if I've something like:
int main(int argc, ...
5
votes
2answers
182 views
Fluent Interfaces - Ensuring a new instance
I have a class that exposes a fluent interface style that I also want to be thread safe.
At the moment, calling chainable methods on an instance of the class sets up various collections with ...
3
votes
2answers
72 views
reentrant lock when extending classes?
Given the following example:
this example is from "Java Concurrency in Practice".
there is a comment:
Because the doSomething methods in Widget and LoggingWidget are both synchronized, each ...
3
votes
1answer
90 views
KVO with Run-to-Completion semantics - Is it possible?
I recently ran into reentrancy issues with KVO. To visualize the problem, I would like to show a minimal example. Consider the interface of an AppDelegate class
@interface AppDelegate : UIResponder ...
0
votes
2answers
111 views
How do I use _vsnprintf_r() correctly?
I am trying to learn something about re-entrant calls and I am trying to use _vsnprintf_r(). The first parameter seems to be some struct _reent *. On Cygwin, it seems that I could just use it like ...
-1
votes
1answer
102 views
Uses of reentrant code?
What are examples of types of applications or methods that should be reentrant? Or is it something that you should generally strive for?
Also, is it generally a given in (pure) functional programming ...
2
votes
1answer
239 views
Difference between thread safe and async-signal safe
According to APUE 2e Chapter 12.5:
If a function is reentrant with respect to multiple threads, we say that it is thread-safe. This doesn't tell us, however, whether the function is reentrant with ...
1
vote
1answer
271 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, ...
0
votes
1answer
119 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 ...
4
votes
2answers
2k views
malloc() is non-reentrant but thread-safe? [duplicate]
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 ...
1
vote
1answer
135 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 ...
5
votes
2answers
372 views
What is the difference between thread-aware and thread-safe?
What is the difference between thread-awareness and thread-safety?
2
votes
0answers
88 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
248 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
113 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
112 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 ...
7
votes
4answers
347 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 ...
0
votes
1answer
363 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 ...
9
votes
4answers
364 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)? ...
5
votes
5answers
1k 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() ...
2
votes
4answers
61 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
780 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
718 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);
}
3
votes
1answer
268 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 ...
16
votes
5answers
4k 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 ...
1
vote
2answers
614 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;
...
6
votes
3answers
2k 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 ...
7
votes
3answers
850 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;
...
2
votes
2answers
312 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, ...
0
votes
5answers
307 views
Reentrancy and recursion
Would it be a true statement to say that every recursive function needs to be reentrant?
-1
votes
5answers
1k views
38
votes
7answers
7k 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 ...
1
vote
2answers
2k 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
1k 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 ...
8
votes
2answers
663 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.
1
vote
7answers
1k 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
3answers
471 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 ...
6
votes
4answers
11k 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 ...
2
votes
4answers
69 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 ...