In unix how we can test or check race condition in c program by using multi threads


 
Thread Tools Search this Thread
Top Forums Programming In unix how we can test or check race condition in c program by using multi threads
# 1  
Old 02-24-2009
In unix how we can test or check race condition in c program by using multi threads

In unix how we can test or check race condition in any c program by using multi thread programming
# 2  
Old 02-25-2009
How are you creating the race condition?

You can easily prevent race conditions by creating a temporary file and using rename() to replace the file after checking the timestamp of the original file.

If only your program is changing the file, you can also use flock(fd, LOCK_EX) so that if another instance of your program also uses flock() it will block until the other instance finishes processing or calls flock(fd, LOCK_UN).

Keep in mind that flock() doesn't prevent file unlink()ing.
# 3  
Old 02-25-2009
Thans 4 ur concern

My actual problem is below one. And iam not getting any idea please help me in this
" Developing a script to detect race conditions in a given library or code using multi-thread programming "
# 4  
Old 02-25-2009
That is a very...broad...problem. If you don't have any details or context it will be difficult to help you.
# 5  
Old 02-27-2009
Quote:
Originally Posted by afroze
Thans 4 ur concern

My actual problem is below one. And iam not getting any idea please help me in this
" Developing a script to detect race conditions in a given library or code using multi-thread programming "
Script to detect race conditions in a given library or code? So you want something that will load the library or disassemble the library and search for possible race conditions? You also want that script to analyze plain code for race conditions? This is FAR from being simple. I'll post the possible solutions:

1) use some program (example: objdump) to disassemble the whole library and simply use regex to search for unsafe calls/interrupts.

2) load/use the library (dlopen/dlsym/dlclose) in thread1 and use thread2 to analyze calls for open() with ptrace() to check if there is any possible race condition.

3) Why is multi-threading an issue? Is this homework?
# 6  
Old 02-27-2009
I guess some code analyzer or compiler could create a dictionary of all variables and identifiable memory addresses that are accessible by more than one thread and are not guarded with some kind of mutex. OpenMP is an Intel-sponsored and industry standard to help write parallel programs in such a fashion; it relies on compiler "hints" to tell when it's safe to thread over a section of code, and which variables need to be mutexed.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

if condition to check the hostname (unix)

I want to know the if condition in checking the hostname in unix and then running a cron job (all in a single line) Thanks (2 Replies)
Discussion started by: prash358
2 Replies

2. Shell Programming and Scripting

Shell script that check the argument passed to it and prints error if test condition is not met

I want to make a script that check for the argument passed to it and generates an error in case any character/string argument passed to it. I am using below code, but its not working. can anyone help. #!/bin/bash if ]; then echo 'An integer argument is passed to the script hence... (3 Replies)
Discussion started by: mukulverma2408
3 Replies

3. Programming

problem about race condition

Hi all, i'm reading Andrew S.Tanenbaum's book --- Modern Operating System.At the part of discussing race condition.And the author gives a solution with using the TSL instruction,say that one process must call the enter_region function before entering the critical regions and call the leave_region... (0 Replies)
Discussion started by: homeboy
0 Replies

4. Shell Programming and Scripting

How to check weather a string is like test* or test* ot *test* in if condition

How to check weather a string is like test* or test* ot *test* in if condition (5 Replies)
Discussion started by: johnjerome
5 Replies

5. Programming

Race condition with PTY

I've been experimenting with pseudo-terminals and found something I don't quite understand. Writing an EOF character to the master end doesn't work quite as I expect. Once I've written any other data, the master pty seems to treat a single ^D as a seperator, i.e. writing "abcabc" would let cat do... (1 Reply)
Discussion started by: Corona688
1 Replies

6. Programming

In unix how we can test or check race condition in a c program by using multi threads

In unix how we can test or check race condition in any c program by using multi thread programming (1 Reply)
Discussion started by: afroze
1 Replies

7. UNIX for Dummies Questions & Answers

In unix how we can test or check race condition in a c program by using multi threads

In unix how we can test or check race condition in any c program by using multi thread programming (1 Reply)
Discussion started by: afroze
1 Replies

8. Linux

In unix how we can test or check race condition in c program by using multi threads

In unix how we can test or check race condition in any c program by using multi thread programming (1 Reply)
Discussion started by: afroze
1 Replies

9. Shell Programming and Scripting

race condition with wait() function

Hi, I'm currently writing a bash script, that starts multiple threads: ____________________ #!/bin/bash loop=0 while((loop!=10)) do thread & ((loop++)) done #wait for all sub-processes (thread) to finish wait ___________________ Now I want to know, what happens, if a... (2 Replies)
Discussion started by: tho99
2 Replies
Login or Register to Ask a Question