CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Thread: Hi !_1

  1. #1
    Join Date
    Mar 2002
    Location
    AhuhA
    Posts
    204

    Smile Hi !_1

    Could anyone tell me something about PREEMPTION and REENTRANCE ? (OS)
    I am really a "dummy", so I really need someone who would be kind to give me some details about these. Thank you so much !!!




    Best Regards,

  2. #2
    Join Date
    Oct 2001
    Location
    Dublin, Eire
    Posts
    880
    I can't, but it would be MUCH more useful if you put a proper title that means something in your thread!!!! Something like "Preemption and Reentrance" at least, and may be even more detailed, instead of "Hi"!
    Elrond
    A chess genius is a human being who focuses vast, little-understood mental gifts and labors on an ultimately trivial human enterprise.
    -- George Steiner

  3. #3
    Join Date
    Mar 2002
    Location
    AhuhA
    Posts
    204

    Yes, I will !!!

    I can't
    Why ? I am sure that you know much more than I do about this. The two terms I meant are related to OS. I donot undertand much about them !!! . So I just hope someone will shed a light on me and give me some instructions !!!. They arenot homework or questions in exams at all !!! I donot need to be counted up, that is why this thread is here !!!





    Best Regards,

  4. #4
    Join Date
    Jun 2001
    Location
    Switzerland
    Posts
    4,443
    As Elrond already said, your chanses to have your post read by the people here are much better if you choose a better title for the thread. There are zillions of threads named "Hi", "Help" and "Urgent" around.

    Back to your question: did you search the net? A quick search on Google returned me this page on reentrant functions along with a lot of others. You can do the same regarding preemption. If you have a specific question, come back here and ask it.

    You have to understand that both topics are so large that the best one of un can do is to direct you to some web resources. For that, we'd need to search the web -- and that's a thing you can do yourself.
    Gabriel, CodeGuru moderator

    Forever trusting who we are
    And nothing else matters
    - Metallica

    Learn about the advantages of std::vector.

  5. #5
    Join Date
    Mar 2002
    Location
    AhuhA
    Posts
    204
    Oh It is you again. You are really nice !!!
    Thank you so much




    Regards,

  6. #6
    Join Date
    Aug 1999
    Location
    <Classified>
    Posts
    6,882
    Reentrant function := The function or piece of code which can safly shared by threads/processes(sometimes).
    Usually such functions should not have dependancies on any other non-reentrant function , variables which are static and not guarded with sync code etc.

    Preemption := Taking away the time slice.
    Regards,
    Ramkrishna Pawar

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured