July

This is the archive for July, 2010.

Dive into the archives.


  • … creating thread …

    Learned this from Ed
    DO NOT do this

    for (int idx = 1; idx <= processors+1; idx++)
    {
    new Thread(tg,
    this.new SampleProcessorServiceThread(),
    “thread” + idx).start();
    }
    this.doWait();


    Instead, DO it this way

    Thread[] […]