Tagged Questions
4
votes
4answers
136 views
Is polling for a lock a correct way to implement critical sections?
If I have a critical section, I must implement a method of locking it. I saw the following variant:
while(lock)
{
//do nothing
}
lock = true;
// code of critical section
lock = false;
However, ...
2
votes
2answers
463 views
Thread safe char string in C
In C:
If I have 3 threads,
2 threads that are appending strings to a global char string (char*),
and 1 thread that is reading from that char string.
Let's say that the 2 threads are appending about ...
2
votes
3answers
284 views
Is there a truly safe formatting library for C?
Bearing in mind the answers given to a question about a safer formatting library for C, I'm wondering whether there is a safe C formatting library?
What I mean is:
there's no possibility to ...
4
votes
9answers
2k views
Is it safe to reuse pointers variables after freeing what they point to?
Is it safe and predictable to reuse pointers after freeing the data they point to?
For example:
char* fileNames[] = { "words.txt", "moreWords.txt" };
char** words = NULL;
int* wordsCount = NULL;
for ...