Windows Vista Forums

Multi-threading question
  1. #1


    Curious Guest

    Multi-threading question

    Here's the question - I've created a program that has multiple
    threads. Some threads use the same file. In order to avoid memory
    corruption when multiple threads access the same file, I use a "lock"
    around that block of code so only a single thread can access the file
    at the same time.



    Someone asked me if there is a better way to handle this than using
    "lock", I don't know what to say. Any suggestion?

      My System SpecsSystem Spec

  2. #2


    Mike Lovell Guest

    Re: Multi-threading question

    "Curious" <fir5tsight@newsgroup> wrote in message
    news:39018b26-20e9-4ee1-8777-b99b7df1afc6@newsgroup

    > Here's the question - I've created a program that has multiple
    > threads. Some threads use the same file. In order to avoid memory
    > corruption when multiple threads access the same file, I use a "lock"
    > around that block of code so only a single thread can access the file
    > at the same time.
    >
    > Someone asked me if there is a better way to handle this than using
    > "lock", I don't know what to say. Any suggestion?
    In a word, no.

    That's the best way to handle it

    --
    Mike
    GoTinker, C# Blog
    http://www.gotinker.com


      My System SpecsSystem Spec

  3. #3


    Curious Guest

    Re: Multi-threading question

    On Mar 10, 10:11*pm, "Mike Lovell" <dont.re...@newsgroup> wrote:

    > "Curious" <fir5tsi...@newsgroup> wrote in message
    >
    > news:39018b26-20e9-4ee1-8777-b99b7df1afc6@newsgroup
    >

    > > Here's the question - I've created a program that has multiple
    > > threads. Some threads use the same file. In order to avoid memory
    > > corruption when multiple threads access the same file, I use a "lock"
    > > around that block of code so only a single thread can access the file
    > > at the same time.
    >

    > > Someone asked me if there is a better way to handle this than using
    > > "lock", I don't know what to say. Any suggestion?
    >
    > In a word, no.
    >
    > That's the best way to handle it
    >
    > --
    > Mike
    > GoTinker, C# Bloghttp://www.gotinker.com
    I agree with you. However, I heard about monitor and sephamore. Are
    they relevant or even better than "lock"?

    I also read some complicated stuff about "notify" and "wait". Are they
    useful?

      My System SpecsSystem Spec

  4. #4


    Mike Lovell Guest

    Re: Multi-threading question

    >> > Here's the question - I've created a program that has multiple

    >> > threads. Some threads use the same file. In order to avoid memory
    >> > corruption when multiple threads access the same file, I use a "lock"
    >> > around that block of code so only a single thread can access the file
    >> > at the same time.
    >>

    >> > Someone asked me if there is a better way to handle this than using
    >> > "lock", I don't know what to say. Any suggestion?
    >>
    >> In a word, no.
    >>
    >> That's the best way to handle it
    >>
    >> --
    >> Mike
    >> GoTinker, C# Bloghttp://www.gotinker.com
    >
    > I agree with you. However, I heard about monitor and sephamore. Are
    > they relevant or even better than "lock"?
    >
    > I also read some complicated stuff about "notify" and "wait". Are they
    > useful?
    Depends what you're doing but then, in a word again, no. Well I guess
    that's harsh to say they are not useful. But I have never had to resort to
    using them in any high performance multi-threaded application I've ever
    made. However I have had to use lock correctly and carefully controlled my
    threads.

    I'd bet you 25c you're not going to need them for your application.

    Out of interest are you coming across some kind of issue with locking or
    performance which has caused you to question 'lock'? Or was it just an
    academic question?

    For some reason 'lock' has come up a lot recently! I thought I'd cover it:
    http://www.gotinker.com/2010/03/11/l...lti-threading/

    --
    Mike
    GoTinker, C# Blog
    http://www.gotinker.com


      My System SpecsSystem Spec

  5. #5


    Curious Guest

    Re: Multi-threading question


    > Depends what you're doing but then, in a word again, no. *Well I guess
    > that's harsh to say they are not useful. *But I have never had to resort to
    > using them in any high performance multi-threaded application I've ever
    > made. *However I have had to use lock correctly and carefully controlled my
    > threads.
    >
    > I'd bet you 25c you're not going to need them for your application.
    >
    > Out of interest are you coming across some kind of issue with locking or
    > performance which has caused you to question 'lock'? *Or was it just an
    > academic question?
    >
    > For some reason 'lock' has come up a lot recently! *I thought I'd coverit:http://www.gotinker.com/2010/03/11/l...lti-threading/
    >
    > --
    > Mike
    > GoTinker, C# Bloghttp://www.gotinker.com- Hide quoted text -
    >
    Thanks for the answer! I never came across any issue with "lock". I
    was grilled in a technical interview about "lock". I told him that I
    used lock to resolve the issue with memory corruption. He then asked
    me if there was a better method to use than to use lock, and that got
    me.

      My System SpecsSystem Spec

  6. #6


    psycho Guest

    Re: Multi-threading question

    On Mar 28, 6:18*am, Curious <fir5tsi...@newsgroup> wrote:

    > > Depends what you're doing but then, in a word again, no. *Well I guess
    > > that's harsh to say they are not useful. *But I have never had to resort to
    > > using them in any high performance multi-threaded application I've ever
    > > made. *However I have had to use lock correctly and carefully controlled my
    > > threads.
    >

    > > I'd bet you 25c you're not going to need them for your application.
    >

    > > Out of interest are you coming across some kind of issue with locking or
    > > performance which has caused you to question 'lock'? *Or was it just an
    > > academic question?
    >

    > > For some reason 'lock' has come up a lot recently! *I thought I'd cover it:http://www.gotinker.com/2010/03/11/l...lti-threading/
    >

    > > --
    > > Mike
    > > GoTinker, C# Bloghttp://www.gotinker.com-Hide quoted text -
    >
    > Thanks for the answer! I never came across any issue with "lock". I
    > was grilled in a technical interview about "lock". I told him that I
    > used lock to resolve the issue with memory corruption. He then asked
    > me if there was a better method to use than to use lock, and that got
    > me.
    Lock keyword is just a convinient way to use Monitor
    Which means
    lock(obj)
    {
    // do something here
    }

    is equivalent to

    Monitor.Enter(obj);
    // do something
    Monitor.Exit(obj);

      My System SpecsSystem Spec

  7. #7


    MarkusSchaber Guest

    Re: Multi-threading question

    On 30 Mrz., 12:11, psycho <paramvir.d...@newsgroup> wrote:

    > Lock keyword is just a convinient way to use Monitor
    > Which means
    > lock(obj)
    > {
    > * * // do something here
    >
    > }
    >
    > is equivalent to
    >
    > Monitor.Enter(obj);
    > // do something
    > Monitor.Exit(obj);
    Not exactly - more like
    Monitor.Enter(obj);
    try {
    // do something
    } finally {
    Monitor.Exit(obj);
    }
    But there are some special precautions, AFAIK, to handle async
    exceptions which can appear between Monitor.Enter and try.

      My System SpecsSystem Spec

Multi-threading question problems?

Similar Threads
Thread Thread Starter Forum Replies Last Post
Newbie question on multi-threading Curious .NET General 5 17 Mar 2008
Newbie question on multi-threading Curious .NET General 0 16 Mar 2008
multi-processor question b11_ Vista General 4 04 Feb 2008
Question about instancing and threading eAlex79 Indigo 0 21 Jan 2008
Vista and multi threading Johannes Kantelberg Vista hardware & devices 0 30 Nov 2006