Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 145449
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:25:32+00:00 2026-05-11T08:25:32+00:00

How can I implement conditional lock in threaded application, for instance I haw 30

  • 0

How can I implement conditional lock in threaded application, for instance I haw 30 threads that are calling function and for most off the time all threads can access is simultaneous, but depending on function input there can be condition when only one thread can do that one thing. (If value for input is repeated and some thread is still working then I need lock.)

I now that there is module threading with Rlock() but I don’t now how to use it in a way that i described it in first part.

Edit: The question is actually about how to prevent any two threads from running the same function with the same argument at the same time. (Thanks to David for helping me formulate my question 🙂 )

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T08:25:33+00:00Added an answer on May 11, 2026 at 8:25 am

    Try this: have a lock in the module where your function is, and if the input to the function is such that locking is required, acquire the lock inside the function. Otherwise don’t.

    l = threading.RLock()  def fn(arg):     if arg == arg_that_needs_lock:         l.acquire()         try:             # do stuff         finally:             l.release()     else:         # do other stuff 

    EDIT:

    As far as I can tell now, the question is actually about how to prevent any two threads from running the same function with the same argument at the same time. There’s no problem with two threads running the same function with different arguments at the same time, though. The simple method to do this, if all valid arguments to the function can be dictionary keys, is to create a dictionary of arguments to locks:

    import threading  dict_lock = threading.RLock() locks = {}  def fn_dict(arg):     dict_lock.acquire()     try:         if arg not in dict:             locks[arg] = threading.RLock()         l = locks[arg]     finally:         dict_lock.release()     l.acquire()     try:         # do stuff     finally:         l.release() 

    If your function can be called with many different arguments, though, that amounts to a lot of locks. Probably a better way is to have a set of all arguments with which the function is currently executing, and have the contents of that set protected by a lock. I think this should work:

    set_condition = threading.Condition() current_args = set()  def fn_set(arg):     set_condition.acquire()     try:         while arg in current_args:             set_condition.wait()         current_args.add(arg)     finally:         set_condition.release()     # do stuff     set_condition.acquire()     try:         current_args.remove(arg)         set_condition.notifyAll()     finally:         set_condition.release() 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 63k
  • Answers 63k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer You definetely need to bundle your applet and images in… May 11, 2026 at 10:30 am
  • added an answer I would use the javascript dateObject.getTimezoneOffset(). Even if their time… May 11, 2026 at 10:30 am
  • added an answer A: This may be a change for security reasons in… May 11, 2026 at 10:30 am

Related Questions

How can I implement a diff function, such as Stack Overflow's question revision history?
How can I implement OpenID feature in ASP NET2.0?
How can I implement IHttpSecurity for Webbrowser Control in .NET? I couldn't find any
How can I implement the following in python? #include <iostream> int main() { std::string
Using reflection, how can I get all types that implement an interface with C#
Can anyone give an idea of how should I implement undo/redo of cutting/copying/pasting of
I'm wondering how you can implement a program similar to tail -f in C/C++,
How exactly can one implement a Log off function when using ASP.NET Forms Authentication
Can someone show me how to implement a recursive lambda expression to traverse a
How can I get programmatic access to the call stack?

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.