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

  • SEARCH
  • Home
  • 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 81331
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T21:26:36+00:00 2026-05-10T21:26:36+00:00

I normally work on single threaded applications and have generally never really bothered with

  • 0

I normally work on single threaded applications and have generally never really bothered with dealing with threads. My understanding of how things work – which certainly, may be wrong – is that as long as we’re always dealing with single threaded code (i.e. no forks or anything like that) it will always be executed in the same thread.

Is this assumption correct? I have a fuzzy idea that UI libraries/frameworks may spawn off threads of their own to handle GUI stuff (which accounts for the fact that the Windows task manager tells me that my ‘single threaded’ application is actually running on 10 threads) but I’m guessing that this shouldn’t affect me?

How does this apply to COM? For instance, if I were to create an instance of a COM component in my code; and that COM component writes some information to a thread-based location (using System.Threading.Thread.GetData for instance) will my application be able to get hold of that information?

So in summary:

  1. In single threaded code, can I be sure that whatever I store in a thread-based location can be retrievable from anywhere else in the code?

  2. If that single threaded code were to create an instance of a COM component which stores some information in a thread-based location, can that be similarly retrievable from anywhere else?

  • 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-10T21:26:36+00:00Added an answer on May 10, 2026 at 9:26 pm

    UI usually has the opposite constraint (sadly): it’s single threaded and everything must happen on that thread.

    The easiest way to check if you are always in the same thread (for, say, a function) is to have an integer variable set at -1, and have a check function like (say you are in C#):

    void AssertSingleThread() {    if (m_ThreadId < 0) m_ThreadId = Thread.CurrentThread.ManagedThreadId;    Debug.Assert(m_ThreadId == Thread.CurrentThread.ManagedThreadId); } 

    That said:

    I don’t understand the question #1, really. Why store in a thread-based location if your purpose is to have a global scope ?

    About the second question, most COM code runs on a single thread and, most often, on the thread where your UI message processing lives – this is because most COM code is designed to be compatible with VB6 which is single-thread.

    The reason your program has about 10 threads is because both Windows (if you use some of its features like completion ports, or some kind of timers) and the CLR (for example for the GC or, again, some types of timers) may create threads in your process space (technically any program with enough priviledges, can too).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 77k
  • Answers 77k
  • 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 Whichever style has the highest specificity will win. If you… May 11, 2026 at 3:34 pm
  • added an answer To clarify more of the architecture and how I ended… May 11, 2026 at 3:34 pm
  • added an answer First of all, you may want to tag your question… May 11, 2026 at 3:34 pm

Related Questions

I've been running up against a problem with Java Swing + my Wacom Graphire
I develop tools in Autodesk Maya. Many of the tools I build have simple
What's the best practice in terms of setting up my DataContext for easy access
I was wondering today about how much code people normally have in a single

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.