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 6216945
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T07:20:19+00:00 2026-05-24T07:20:19+00:00

can somebody please explain what is the difference if I do mutex = createMutex

  • 0

can somebody please explain what is the difference if I do

mutex = createMutex
waitForSingleObject
Release(mutex)

and

event = createEvent
waitForSingleObject
Release(event)

I’m so confused, can I use both versions for the synchronization? thanks in advance for any help

  • 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. Editorial Team
    Editorial Team
    2026-05-24T07:20:20+00:00Added an answer on May 24, 2026 at 7:20 am

    You use a mutex to ensure that only one thread of execution can be accessing something. For example, if you want to update a list that can potentially be used by multiple threads, you’d use a mutex:

    acquire mutex
    update list
    release mutex
    

    With a mutex, only one thread at a time can be executing the “update list”.

    You use a manual reset event if you want multiple threads to wait for something to happen before continuing. For example, you started multiple threads, but they’re all paused waiting for some other event before they can continue. Once that event happens, all of the threads can start running.

    The main thread would look like this:

    create event, initial value false (not signaled)
    start threads
    do some other initialization
    signal event
    

    Each thread’s code would be:

    do thread initialization
    wait for event to be signaled
    do thread processing
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm a little bit confused, can somebody please explain the main difference between those
Can somebody please explain how to use macros in x86 assembly coding
can somebody please explain what is the difference between freeglut.h and glut.h
Can somebody please explain what is the main difference between visual studio and Qt?
Can somebody please explain (with example) the difference between context-independent and context-dependent overloading?
can somebody please explain what is the difference between the following mechanisms of passing
Can somebody please explain with examples (of code) what is the difference between deadlock
Can somebody please explain me the difference between the terms high memory and high
can somebody please explain difference between those two declarations in the properties of the
Can somebody please explain how to find out if full text search is enabled

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.