Tagged Questions
The reentrant tag has no wiki summary.
9
votes
4answers
2k views
Mixing synchronized() with ReentrantLock.lock()
In Java, do ReentrantLock.lock() and ReetrantLock.unlock() use the same locking mechanism as synchronized()?
My guess is "No," but I'm hoping to be wrong.
Example:
Imagine that Thread 1 and Thread ...
6
votes
3answers
358 views
Reentrant library design in C
Let's say I'm building a library to spork quuxes in C.
Quuxes need two state variables to be sporked successfully:
static int quux_state;
static char* quux_address;
/* function to spork quuxes ...
5
votes
1answer
130 views
Is pushing a variable onto an array a threadsafe operation?
I have the following Perl code:
push(@myArray, $myValue);
Is the operation atomic, or will I need to use locks, if multiple threads will be performing this same operation on many threads?
4
votes
2answers
149 views
What strategy to use in Java for hierarchical reentrant read/write locking?
I'm looking for en efficient system to have a series of read/write locks organized hierarchically to manage access to hierarchically organized resources. If a subtree is locked for write, then no ...
3
votes
1answer
112 views
Is __alloc_pages_slowpath() Reentrant-Safe or Not?
Can a call to __alloc_pages_slowpath() survive a device interrupt that also makes a call to __alloc_pages_slowpath() or does the second call corrupt the first one?
I am seeing a program call read(2) ...
3
votes
7answers
12k 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?
3
votes
5answers
1k views
Portable way to catch signals and report problem to the user
If by some miracle a segfault occurs in our program, I want to catch the SIGSEGV and let the user (possibly a GUI client) know with a single return code that a serious problem has occurred. At the ...
2
votes
2answers
47 views
A non-reentrant function in an API being used in a multi-threaded program
I've using the QT API in C++, but I imagine answers can come effectively from people without any prior experience with QT.
QT has a function in its XML-handling class, called setContent(), which is ...
2
votes
2answers
79 views
2
votes
1answer
320 views
Is the volatile keyword required for fields accessed via a ReentrantLock?
My question refers to whether or not the use of a ReentrantLock guarantees visibility of a field in the same respect that the synchronized keyword provides.
For example, in the following class A, ...
1
vote
4answers
107 views
ReentrantLock: Lock/Unlock speed in single-threaded application
i'm using some ReentrantLock to synchronize access to a List across multiple threads. I just write a generic
try {
lock.lock();
... modify list here
} finally {
lock.unlock();
}
...
1
vote
4answers
234 views
Reentrant lock and deadlock with Java
Can someone explain to me how Reentrant lock and deadlock relate to each other with Java code (pseudo) example?
0
votes
2answers
87 views
Is WCF MessageBuffer.CreateMessage thread safe?
http://msdn.microsoft.com/en-us/library/system.servicemodel.channels.messagebuffer(v=vs.85).aspx is somewhat vague when it says that "Any public static (Shared in Visual Basic) members of this type ...
0
votes
1answer
29 views
Is it possible for windows event and Windows timer event to execute re-entrantly?
I have "Update" method which is executes in event handler (button click), and in Windows forms Timer callback. Is it possible for two "Update" (re-entrancy) to be executing at the same time? That is, ...
0
votes
2answers
318 views
need read-write lock in objective c or c
I can't seem to find any read-write locks for Objective C. This is for iphone dev.
Any ideas? The appendix in this paper has some code, but it is incomplete.
0
votes
1answer
106 views
Flex/Bison Multi-pass Class Parsing
I am writing a compiler for a toy OO language. I am writing it in C, using Flex and Bison.
Consider the following syntax:
class MyClass {
int m_n;
void MyFunc(int b) {
m_n = 5;
...
0
votes
2answers
184 views
C# attempt to reentrantly lock something deadlocked, apparent bug
Curious to know if anyone else has seen this problem. I have an application that locks a statically declared object, this way:
lock(Group.IsisGroups)
{
do some stuff
}
do-some-stuff ...
0
votes
1answer
135 views
X-platform reentrant wcstok()?
Right now I'm looking for a reentrant version of wcstok() that is known by GCC and other compilers (if there's any).
So far I use wcstok_s() but that one is MSVC only and I need to compile the code ...
0
votes
1answer
130 views
How do you pronounce “Reentrant?” [closed]
I can't find any information online how to pronounce this word.
0
votes
4answers
880 views
is this function reentrant?
void reverse_string(char* string, int str_size) {
char tmp;
int i = 0;
int j = str_size - 1;
while (i < j) {
tmp = string[i];
string[i] = string[j];
...
0
votes
2answers
1k views
WCF Nested Call-back
The backgound: I am trying to forward the server-side ApplyChangeFailed event that is fired by a Sync Services for ADO 1.0 DBServerSyncProvider to the client. All the code examples for Sync Services ...
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
771 views